logstash-output-mongodb 3.0.0 → 3.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4261d96d74df5b9ca9c612cc91f082bdb1f6e9f0
4
- data.tar.gz: 3be2f47775fb15b98d6986c76426a5005939df7e
3
+ metadata.gz: 4ffa90de651ecb6cdded946ccb3df2e6b4ac6f40
4
+ data.tar.gz: 763433ec998c5c463eaead7a6253310fd41d2fe4
5
5
  SHA512:
6
- metadata.gz: 01c2bc8b14ee269e0d5f3beaa8b4b99ec16b9bf3c532a84818513356d12af9a7374b40d02c94e9e82aeac7420a7cf4939507b0ceae56c953acb1bb310de3ae41
7
- data.tar.gz: 84a522503b241ecb0541de98a16d556e05d3b86a5b3a1d38a9b66e55ef3b4a5bf5105a2cec341ed4bbbbd78792e2971e42ac120862995e796d543eaf7c958245
6
+ metadata.gz: 3638c30d6d3eeaab6ab73916f08679847b348888749b059a0e83a9624ac99f57598243aaa7c29b8256dfd6dbc960531e4b4fe0042ed89b7de78f5eed2128c9ff
7
+ data.tar.gz: 90c011a9f9f71fb0d93cce2e16b1653f29d2675319090f0ed6b5ce4026ed9c0b2b98d5b940d75b5d52fc0abaa0799f95d73ded649a06bea9dcbfe743b686d42f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 3.0.1
2
+ - Docs: Fix doc generation issue by removing extraneous comments and adding a short description of the plugin
3
+
1
4
  ## 3.0.0
2
5
  - Breaking: Updated plugin to use new Java Event APIs
3
6
  - relax logstash-core-plugin-api constrains
@@ -4,29 +4,29 @@ require "logstash/namespace"
4
4
  require "mongo"
5
5
  require_relative "bson/big_decimal"
6
6
  require_relative "bson/logstash_timestamp"
7
- # require_relative "bson/logstash_event"
8
7
 
8
+ # This output writes events to MongoDB.
9
9
  class LogStash::Outputs::Mongodb < LogStash::Outputs::Base
10
10
 
11
11
  config_name "mongodb"
12
12
 
13
- # a MongoDB URI to connect to
14
- # See http://docs.mongodb.org/manual/reference/connection-string/
13
+ # A MongoDB URI to connect to.
14
+ # See http://docs.mongodb.org/manual/reference/connection-string/.
15
15
  config :uri, :validate => :string, :required => true
16
16
 
17
- # The database to use
17
+ # The database to use.
18
18
  config :database, :validate => :string, :required => true
19
19
 
20
20
  # The collection to use. This value can use `%{foo}` values to dynamically
21
21
  # select a collection based on data in the event.
22
22
  config :collection, :validate => :string, :required => true
23
23
 
24
- # If true, store the @timestamp field in mongodb as an ISODate type instead
24
+ # If true, store the @timestamp field in MongoDB as an ISODate type instead
25
25
  # of an ISO8601 string. For more information about this, see
26
- # http://www.mongodb.org/display/DOCS/Dates
26
+ # http://www.mongodb.org/display/DOCS/Dates.
27
27
  config :isodate, :validate => :boolean, :default => false
28
28
 
29
- # Number of seconds to wait after failure before retrying
29
+ # The number of seconds to wait after failure before retrying.
30
30
  config :retry_delay, :validate => :number, :default => 3, :required => false
31
31
 
32
32
  # If true, an "_id" field will be added to the document before insertion.
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-mongodb'
3
- s.version = '3.0.0'
3
+ s.version = '3.0.1'
4
4
  s.licenses = ['Apache License (2.0)']
5
5
  s.summary = "Store events into MongoDB"
6
6
  s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-mongodb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-16 00:00:00.000000000 Z
11
+ date: 2017-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement