logstash-output-mongodb 2.0.5 → 3.0.0
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 +4 -4
- data/CHANGELOG.md +9 -2
- data/LICENSE +1 -1
- data/README.md +12 -3
- data/lib/logstash/outputs/mongodb.rb +2 -2
- data/logstash-output-mongodb.gemspec +3 -4
- data/spec/outputs/mongodb_spec.rb +1 -1
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4261d96d74df5b9ca9c612cc91f082bdb1f6e9f0
|
4
|
+
data.tar.gz: 3be2f47775fb15b98d6986c76426a5005939df7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01c2bc8b14ee269e0d5f3beaa8b4b99ec16b9bf3c532a84818513356d12af9a7374b40d02c94e9e82aeac7420a7cf4939507b0ceae56c953acb1bb310de3ae41
|
7
|
+
data.tar.gz: 84a522503b241ecb0541de98a16d556e05d3b86a5b3a1d38a9b66e55ef3b4a5bf5105a2cec341ed4bbbbd78792e2971e42ac120862995e796d543eaf7c958245
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,14 @@
|
|
1
|
-
|
1
|
+
## 3.0.0
|
2
|
+
- Breaking: Updated plugin to use new Java Event APIs
|
3
|
+
- relax logstash-core-plugin-api constrains
|
4
|
+
- update .travis.yml
|
5
|
+
|
6
|
+
## 2.0.5
|
2
7
|
- Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
|
3
|
-
|
8
|
+
|
9
|
+
## 2.0.4
|
4
10
|
- New dependency requirements for logstash-core for the 5.0 release
|
11
|
+
|
5
12
|
## 2.0.3
|
6
13
|
- Patch Timestamp and BigDecimal with to_bson method and register with BSON.
|
7
14
|
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
# Logstash Plugin
|
2
2
|
|
3
|
-
[](http://build-eu-00.elastic.co/view/LS%20Plugins/view/LS%20Outputs/job/logstash-plugin-output-mongodb-unit/)
|
3
|
+
[](https://travis-ci.org/logstash-plugins/logstash-output-mongodb)
|
5
4
|
|
6
5
|
This is a plugin for [Logstash](https://github.com/elastic/logstash).
|
7
6
|
|
@@ -56,7 +55,12 @@ gem "logstash-filter-awesome", :path => "/your/local/logstash-filter-awesome"
|
|
56
55
|
```
|
57
56
|
- Install plugin
|
58
57
|
```sh
|
58
|
+
# Logstash 2.3 and higher
|
59
|
+
bin/logstash-plugin install --no-verify
|
60
|
+
|
61
|
+
# Prior to Logstash 2.3
|
59
62
|
bin/plugin install --no-verify
|
63
|
+
|
60
64
|
```
|
61
65
|
- Run Logstash with your plugin
|
62
66
|
```sh
|
@@ -74,7 +78,12 @@ gem build logstash-filter-awesome.gemspec
|
|
74
78
|
```
|
75
79
|
- Install the plugin from the Logstash home
|
76
80
|
```sh
|
77
|
-
|
81
|
+
# Logstash 2.3 and higher
|
82
|
+
bin/logstash-plugin install --no-verify
|
83
|
+
|
84
|
+
# Prior to Logstash 2.3
|
85
|
+
bin/plugin install --no-verify
|
86
|
+
|
78
87
|
```
|
79
88
|
- Start Logstash and proceed to test the plugin
|
80
89
|
|
@@ -48,10 +48,10 @@ class LogStash::Outputs::Mongodb < LogStash::Outputs::Base
|
|
48
48
|
document = {}.merge(event.to_hash)
|
49
49
|
if !@isodate
|
50
50
|
# not using timestamp.to_bson
|
51
|
-
document["@timestamp"] = event
|
51
|
+
document["@timestamp"] = event.timestamp.to_json
|
52
52
|
end
|
53
53
|
if @generateId
|
54
|
-
document["_id"] = BSON::ObjectId.new(nil, event
|
54
|
+
document["_id"] = BSON::ObjectId.new(nil, event.timestamp)
|
55
55
|
end
|
56
56
|
@db[event.sprintf(@collection)].insert_one(document)
|
57
57
|
rescue => e
|
@@ -1,10 +1,9 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
|
-
|
3
2
|
s.name = 'logstash-output-mongodb'
|
4
|
-
s.version = '
|
3
|
+
s.version = '3.0.0'
|
5
4
|
s.licenses = ['Apache License (2.0)']
|
6
5
|
s.summary = "Store events into MongoDB"
|
7
|
-
s.description = "This gem is a
|
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"
|
8
7
|
s.authors = ["Elastic"]
|
9
8
|
s.email = 'info@elastic.co'
|
10
9
|
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
|
@@ -20,7 +19,7 @@ Gem::Specification.new do |s|
|
|
20
19
|
s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
|
21
20
|
|
22
21
|
# Gem dependencies
|
23
|
-
s.add_runtime_dependency "logstash-core-plugin-api", "
|
22
|
+
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
|
24
23
|
s.add_runtime_dependency 'logstash-codec-plain'
|
25
24
|
s.add_runtime_dependency 'mongo', '~> 2.0.6'
|
26
25
|
|
@@ -19,7 +19,7 @@ describe LogStash::Outputs::Mongodb do
|
|
19
19
|
|
20
20
|
describe "#send" do
|
21
21
|
|
22
|
-
subject { LogStash::Outputs::Mongodb.new(config) }
|
22
|
+
subject! { LogStash::Outputs::Mongodb.new(config) }
|
23
23
|
|
24
24
|
let(:properties) { { "message" => "This is a message!",
|
25
25
|
"uuid" => SecureRandom.uuid,
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-output-mongodb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-01-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
15
15
|
requirements:
|
16
|
-
- - "
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '1.60'
|
19
|
+
- - "<="
|
17
20
|
- !ruby/object:Gem::Version
|
18
|
-
version: '
|
21
|
+
version: '2.99'
|
19
22
|
name: logstash-core-plugin-api
|
20
23
|
prerelease: false
|
21
24
|
type: :runtime
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.60'
|
30
|
+
- - "<="
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version: '
|
32
|
+
version: '2.99'
|
27
33
|
- !ruby/object:Gem::Dependency
|
28
34
|
requirement: !ruby/object:Gem::Requirement
|
29
35
|
requirements:
|
@@ -66,7 +72,7 @@ dependencies:
|
|
66
72
|
- - ">="
|
67
73
|
- !ruby/object:Gem::Version
|
68
74
|
version: '0'
|
69
|
-
description: This gem is a
|
75
|
+
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
|
70
76
|
email: info@elastic.co
|
71
77
|
executables: []
|
72
78
|
extensions: []
|