logstash-output-gelf 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: 5cdc85c2309cb3f03e8c052561b52ba7af71f048
4
- data.tar.gz: 7cf0bc75699a08fcbf993d41bbf169dca8f5c5d6
3
+ metadata.gz: bec2fcc95708ebd4b77b579f0f35834a8c5a9d94
4
+ data.tar.gz: 1778d4059759063b1c39a5cb2accf3197bf59616
5
5
  SHA512:
6
- metadata.gz: 639ce33bba6e6744ec5e12dc3648601f3954ee5b07d1030d9e2818bc3fa099ff558ae6ffdbea5b405c32bbab2162a87b3de96cc0ea617799a45e3ffa60444ed7
7
- data.tar.gz: 4094f5c1dd7df466f5e9b8f53ee711a92d6fa7557e69e326958401bbd55aa18403bb4522f58f1946c0e754550886431d80b82ba8cc93dafb8415190e1b3679fd
6
+ metadata.gz: 6e878ace475a46ab973d56d65702fa41d7ce137b16bfb73dbfd8066d3fbd54af5de3619e340bbed85dc8ede7a4385968f4b907a79d3fe91fa1c5daec421853a0
7
+ data.tar.gz: 0f02e26602d26a75a19925f61f3c6614c04ef170f46c4b52477dfd8a4b23a02e148d03e00777d0c9b0741969a209488cbfcbe880dcdb6337950c17c9245c5a17
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 test to the project
@@ -134,7 +134,7 @@ class LogStash::Outputs::Gelf < LogStash::Outputs::Base
134
134
 
135
135
  public
136
136
  def receive(event)
137
- return unless output?(event)
137
+
138
138
 
139
139
  # We have to make our own hash here because GELF expects a hash
140
140
  # with a specific format.
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-gelf'
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 generates messages in GELF format."
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 'gelf', ['1.3.2']
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-gelf
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: