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 +4 -4
- data/CHANGELOG.md +3 -0
- data/logstash-input-jmx.gemspec +2 -2
- data/spec/inputs/jmx_spec.rb +2 -4
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8db00f1d98bc7b5d3436c8f04830aacea9b3dba6
|
4
|
+
data.tar.gz: 757a1ed7a802fa5fc9a4e0ce9ac4d4f9a9b4de0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a3decff581c658c0facbe645b3a23e045ffc34941f3be20343731057121b57603f2b210b561746abc7e90238e9b99e2d56b2d8a45473d459ca639aafdbd7ab4
|
7
|
+
data.tar.gz: 9f635dd1255fc2d2b8be74afefa8073e0cdf8a9767e58c88a6441ea1ac3be27ec399cf0f5d1d36efa9c3b33bd94bb10a3371d94f7bbba14fd6c1f782f70715be
|
data/CHANGELOG.md
CHANGED
data/logstash-input-jmx.gemspec
CHANGED
@@ -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.
|
4
|
+
s.version = '3.0.4'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
|
-
s.summary = "
|
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'
|
data/spec/inputs/jmx_spec.rb
CHANGED
@@ -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
|
-
|
33
|
-
|
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.
|
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-
|
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:
|
116
|
+
summary: Retrieves metrics from remote Java applications over JMX
|
117
117
|
test_files:
|
118
118
|
- spec/inputs/jmx_spec.rb
|