logstash-input-jmx 3.0.3 → 3.0.4

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: 464829ff5de25edc95d174f8013e1fdcfa6b2263
4
- data.tar.gz: 6de9916bb105bafbadaaf72772f9bdab2d5706a7
3
+ metadata.gz: 8db00f1d98bc7b5d3436c8f04830aacea9b3dba6
4
+ data.tar.gz: 757a1ed7a802fa5fc9a4e0ce9ac4d4f9a9b4de0d
5
5
  SHA512:
6
- metadata.gz: 409696260483574de2a29f7e5c35c6fe9411cbe7adde21d0a7044a27c159d14d65995e94e550cb25e0fbbccd5546d011cbcfb90ebc50680426f733f2d321a089
7
- data.tar.gz: f6ddeb7ded5e1d9b230a3b3774f61c90695098ef2e1ffa29cf2abe7a371667478406533d46a82b21642e38d8402c27fcb125c66302d94278367f57a61fadc897
6
+ metadata.gz: 2a3decff581c658c0facbe645b3a23e045ffc34941f3be20343731057121b57603f2b210b561746abc7e90238e9b99e2d56b2d8a45473d459ca639aafdbd7ab4
7
+ data.tar.gz: 9f635dd1255fc2d2b8be74afefa8073e0cdf8a9767e58c88a6441ea1ac3be27ec399cf0f5d1d36efa9c3b33bd94bb10a3371d94f7bbba14fd6c1f782f70715be
@@ -1,3 +1,6 @@
1
+ ## 3.0.4
2
+ - Update gemspec summary
3
+
1
4
  ## 3.0.3
2
5
  - Fix some documentation issues
3
6
 
@@ -1,9 +1,9 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-jmx'
4
- s.version = '3.0.3'
4
+ s.version = '3.0.4'
5
5
  s.licenses = ['Apache License (2.0)']
6
- s.summary = "Retrieve metrics from jmx."
6
+ s.summary = "Retrieves metrics from remote Java applications over 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"
8
8
  s.authors = ["Elastic"]
9
9
  s.email = 'info@elastic.co'
@@ -29,10 +29,8 @@ describe LogStash::Inputs::Jmx do
29
29
  #Minimal configuration
30
30
  expect(subject.validate_configuration(minimal_config)).to eq([])
31
31
  # Re-test with java objects from JrJackson serialization
32
- if LogStash::Environment.jruby?
33
- require "java"
34
- expect(subject.validate_configuration({"host"=>"localhost","port"=>1234,"queries" => java.util.ArrayList.new})).to eq([])
35
- end
32
+ require "java"
33
+ expect(subject.validate_configuration({"host"=>"localhost","port"=>1234,"queries" => java.util.ArrayList.new})).to eq([])
36
34
  end
37
35
 
38
36
  it "return error message for missing mandatory parameters" do
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.3
4
+ version: 3.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-08-15 00:00:00.000000000 Z
11
+ date: 2017-11-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -113,6 +113,6 @@ rubyforge_project:
113
113
  rubygems_version: 2.4.8
114
114
  signing_key:
115
115
  specification_version: 4
116
- summary: Retrieve metrics from jmx.
116
+ summary: Retrieves metrics from remote Java applications over JMX
117
117
  test_files:
118
118
  - spec/inputs/jmx_spec.rb