logstash-input-jmx 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 +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/logstash/inputs/jmx.rb +2 -2
- data/logstash-input-jmx.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf1d9ed39a9edd9a28f5cd7a6bcd3bfc46cb4fc4
|
4
|
+
data.tar.gz: 4fbc5c8b0d77b3375ff3745ffe4e310cf01670d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 49498f27ae5814f817bff216e790b3b22190e4700ebe185b569303a2710508e0c783b89e4d60c3287f3b5aad2014008c72eacbefd60fc862febfeaf50c4a08a5
|
7
|
+
data.tar.gz: bba4e01ea2a13d2b8a7988e6a5eae3742a8ad374c324438f267beb6ac0d843ade7fa3192c82fedc9858e3339cba2c25790ad8c0144dc0dd76da446c8b94485b1
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,15 @@
|
|
1
|
+
# 3.0.1
|
2
|
+
- fix left-over usage of old event api, migrated to using `event#set`
|
3
|
+
|
1
4
|
# 3.0.0
|
2
5
|
- Breaking: depend on logstash-core-plugin-api between 1.60 and 2.99
|
3
6
|
|
4
7
|
# 2.0.4
|
5
8
|
- Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
|
9
|
+
|
6
10
|
# 2.0.3
|
7
11
|
- New dependency requirements for logstash-core for the 5.0 release
|
12
|
+
|
8
13
|
## 2.0.0
|
9
14
|
- Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
|
10
15
|
instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
|
data/lib/logstash/inputs/jmx.rb
CHANGED
@@ -172,8 +172,8 @@ class LogStash::Inputs::Jmx < LogStash::Inputs::Base
|
|
172
172
|
def send_event_to_queue(queue,host,metric_path,metric_value)
|
173
173
|
@logger.debug('Send event to queue to be processed by filters/outputs')
|
174
174
|
event = LogStash::Event.new
|
175
|
-
event('host', host)
|
176
|
-
event('path', @path)
|
175
|
+
event.set('host', host)
|
176
|
+
event.set('path', @path)
|
177
177
|
event.set('type', @type)
|
178
178
|
number_type = [Fixnum, Bignum, Float]
|
179
179
|
boolean_type = [TrueClass, FalseClass]
|
data/logstash-input-jmx.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-input-jmx'
|
4
|
-
s.version = '3.0.
|
4
|
+
s.version = '3.0.1'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Retrieve metrics from jmx."
|
7
7
|
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-input-jmx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.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:
|
11
|
+
date: 2017-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|