logstash-output-ganglia 2.0.0 → 2.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: 7745914206301b9e7286b51f0facbc8a9bda36b3
4
- data.tar.gz: c285f174af6f51824d0b8406e02d5e70100b5e8a
3
+ metadata.gz: 9fc7fcbd7a10d3f25aed818e2b13c1dc7933982a
4
+ data.tar.gz: 061f42c059059e9254cadfe6548ae9df581b90be
5
5
  SHA512:
6
- metadata.gz: fb2e98da2558ec9dd5ed5fed8ae0f9acc8a75910601c9b5b2cd57eaa3fa3e3dda0ad4f0446fae0089f0a5c5e4f07ba93089f1d912ff57418d607876bb47369cf
7
- data.tar.gz: 5592bb1286739d4f782582aeb4822880e6bbcfce32861da6d60352ce58ccf372be86286327a5ab77e5df6158c73b4c37cf1817f3242f9b1b0409b9bbcc37432d
6
+ metadata.gz: ba7183041d91e11ad12a2f94253750e95626e9ed0dba469ad07955f60b067ef34cb7170744695d21e9ad9e85412ab64afc5450d420ba04a2a63d246c293748f9
7
+ data.tar.gz: 58082a24d1429e5692fab9327bae785c97dcd2aabfbeb968a64f00f4ca0bb6c05bc3dc60dfdbc4f45cc1ce291aafd5f7acc8001d37cb3aa717f529fb1fd5c62e
data/CHANGELOG.md CHANGED
@@ -1,2 +1,7 @@
1
+ ## 2.0.0
2
+ - Plugins were updated to follow the new shutdown semantic, this mainly allows Logstash to instruct input plugins to terminate gracefully,
3
+ instead of using Thread.raise on the plugins' threads. Ref: https://github.com/elastic/logstash/pull/3895
4
+ - Dependency on logstash-core update to 2.0
5
+
1
6
  # 1.1.0
2
7
  - add tests to the project
@@ -47,7 +47,7 @@ class LogStash::Outputs::Ganglia < LogStash::Outputs::Base
47
47
 
48
48
  public
49
49
  def receive(event)
50
- return unless output?(event)
50
+
51
51
 
52
52
  # gmetric only takes integer values, so convert it to int.
53
53
  case @metric_type
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-ganglia'
4
- s.version = '2.0.0'
4
+ s.version = '2.0.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "This output allows you to pull metrics from your logs and ship them to ganglia's gmond."
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/plugin install gemname. This gem is not a stand-alone program"
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
20
20
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
21
21
 
22
22
  # Gem dependencies
23
- s.add_runtime_dependency "logstash-core", "~> 2.0.0.snapshot"
23
+ s.add_runtime_dependency "logstash-core", ">= 2.0.0.snapshot", "< 3.0.0"
24
24
 
25
25
  s.add_runtime_dependency 'gmetric', ['0.1.3']
26
26
  s.add_runtime_dependency 'logstash-codec-plain'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-ganglia
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.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: 2015-09-23 00:00:00.000000000 Z
11
+ date: 2015-10-08 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
17
  - !ruby/object:Gem::Version
18
18
  version: 2.0.0.snapshot
19
+ - - <
20
+ - !ruby/object:Gem::Version
21
+ version: 3.0.0
19
22
  name: logstash-core
20
23
  prerelease: false
21
24
  type: :runtime
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - ~>
27
+ - - '>='
25
28
  - !ruby/object:Gem::Version
26
29
  version: 2.0.0.snapshot
30
+ - - <
31
+ - !ruby/object:Gem::Version
32
+ version: 3.0.0
27
33
  - !ruby/object:Gem::Dependency
28
34
  requirement: !ruby/object:Gem::Requirement
29
35
  requirements: