logstash-output-graphtastic 2.0.4 → 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 -3
- data/LICENSE +1 -1
- data/README.md +12 -3
- data/lib/logstash/outputs/graphtastic.rb +1 -3
- data/logstash-output-graphtastic.gemspec +3 -4
- 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: f59d3a9fe6181c72efa1dab095a3143dbe8f0f21
|
|
4
|
+
data.tar.gz: bd90a2c65e30b853085b491b34962ed640aa406b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0edb3b0034c1f85540bcf9d084b0b719b0897f40b6351dd7ecb9c376c0d302b265c3a789f4a9f8e7032c34288916a067593378b5c44e9a600c938f9301edd51
|
|
7
|
+
data.tar.gz: 1e05bb42eaee71ccb6eb29927953cffa138bf948dc7faa78c1492b3e8907ef63808dd1b9196214020688eda1ed7dc543e103a06bb19a449cf543fd0f1b2f66e1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,15 @@
|
|
|
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.4
|
|
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.3
|
|
4
10
|
- New dependency requirements for logstash-core for the 5.0 release
|
|
11
|
+
|
|
5
12
|
## 2.0.0
|
|
6
13
|
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
|
|
7
14
|
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
|
|
8
15
|
- Dependency on logstash-core update to 2.0
|
|
9
|
-
|
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-graphtastic-unit/)
|
|
3
|
+
[](https://travis-ci.org/logstash-plugins/logstash-output-graphtastic)
|
|
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
|
|
|
@@ -95,9 +95,8 @@ class LogStash::Outputs::GraphTastic < LogStash::Outputs::Base
|
|
|
95
95
|
end
|
|
96
96
|
|
|
97
97
|
def receive(event)
|
|
98
|
-
|
|
99
98
|
# Set Intersection - returns a new array with the items that are the same between the two
|
|
100
|
-
if !@tags.empty? && (event
|
|
99
|
+
if !@tags.empty? && (event.get("tags") & @tags).size == 0
|
|
101
100
|
# Skip events that have no tags in common with what we were configured
|
|
102
101
|
@logger.debug("No Tags match for GraphTastic Output!")
|
|
103
102
|
return
|
|
@@ -183,5 +182,4 @@ class LogStash::Outputs::GraphTastic < LogStash::Outputs::Base
|
|
|
183
182
|
end
|
|
184
183
|
|
|
185
184
|
def udpsocket; @socket ||= UDPSocket.new end
|
|
186
|
-
|
|
187
185
|
end
|
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
|
-
|
|
3
2
|
s.name = 'logstash-output-graphtastic'
|
|
4
|
-
s.version = '
|
|
3
|
+
s.version = '3.0.0'
|
|
5
4
|
s.licenses = ['Apache License (2.0)']
|
|
6
5
|
s.summary = "Send metrics to GraphTastic"
|
|
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
|
|
|
25
24
|
s.add_development_dependency 'logstash-devutils'
|
|
26
25
|
end
|
metadata
CHANGED
|
@@ -1,29 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-output-graphtastic
|
|
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: 2016-
|
|
11
|
+
date: 2016-09-09 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:
|
|
@@ -38,7 +44,7 @@ dependencies:
|
|
|
38
44
|
- - ">="
|
|
39
45
|
- !ruby/object:Gem::Version
|
|
40
46
|
version: '0'
|
|
41
|
-
description: This gem is a
|
|
47
|
+
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
|
|
42
48
|
email: info@elastic.co
|
|
43
49
|
executables: []
|
|
44
50
|
extensions: []
|