logstash-output-tcp 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: f7802d301c175bb73d27ba824353393f249209d9
4
- data.tar.gz: aee68e9729040aaa0baec52d6dbe26b4a48f7354
3
+ metadata.gz: 85aa3119d2d352688b05b59bbc0a32277e0e2d8d
4
+ data.tar.gz: e687199ffdaef1112e9841a30ae0213305270774
5
5
  SHA512:
6
- metadata.gz: 1f64461771ad22296f5770da85e956295360df55f3357171b489baac8598d934ded9c10439c79bcf49a1275607adea99b06673ff80cf6001852ec8001e615989
7
- data.tar.gz: 14d635ac355c647293bfdd5bc3cf143b0d0a2a4052f473d64474a5d70b1d3f78a03bfc887af304f5e7a55591291d053895421b27551c566f2724229fac3b8b5d
6
+ metadata.gz: 9cef95459c91e651d86e230b08688b0fb602c258a3d6049f374a17e8dccbdac149924d1482d9aeacb103b459c1175389774d6a790bbbfcfa8006a7a3070c3c0b
7
+ data.tar.gz: 789e783753561e36aafe07bc54ad2954c9012be711ed93acd8395ba4426a9f7695fb1d2e2b02eba361d52bc417e34f916e25d7aa675b70ab8750e161cbdf51a6
data/CHANGELOG.md CHANGED
@@ -0,0 +1,5 @@
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
+
@@ -132,7 +132,7 @@ class LogStash::Outputs::Tcp < LogStash::Outputs::Base
132
132
 
133
133
  public
134
134
  def receive(event)
135
- return unless output?(event)
135
+
136
136
 
137
137
  #if @message_format
138
138
  #output = event.sprintf(@message_format) + "\n"
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-output-tcp'
4
- s.version = '2.0.0'
4
+ s.version = '2.0.1'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Write events over a TCP socket."
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 'logstash-codec-json'
26
26
  s.add_runtime_dependency 'stud'
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-tcp
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: