logstash-input-jmx 3.0.0 → 3.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 73a2b9065138ca4a860e457cd95b1453adeb4286
4
- data.tar.gz: dcdcc6d474f4696b2fdda87cf1e96e3bf7e24c67
3
+ metadata.gz: cf1d9ed39a9edd9a28f5cd7a6bcd3bfc46cb4fc4
4
+ data.tar.gz: 4fbc5c8b0d77b3375ff3745ffe4e310cf01670d8
5
5
  SHA512:
6
- metadata.gz: 89c90c648162fc7f26c2c078dd2f17a7cb79c046281544e8b5c0925b49140f842f4e826b26e44e838107a3d929bd39ea9cc4955e76844cf370f1ff7cfb3a4e58
7
- data.tar.gz: 8bac9b78f06b0b5860e8dde0984f76b5309713848609355b4e6f84ec2a3eff0e31728f807453297e3bade6c3fec37597ea0ea78d37cd642cda4ed1ebabde8912
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
@@ -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]
@@ -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.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.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: 2016-11-08 00:00:00.000000000 Z
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