logstash-input-tcp 4.0.1 → 4.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -6
- data/lib/logstash/inputs/tcp.rb +1 -1
- data/logstash-input-tcp.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 76517907f5b27463678da1a729b539186a7f9502
|
|
4
|
+
data.tar.gz: de7c3c54a98363b01903166d49a6e036c7626d6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7599cc3029e3d34faed4d37555730167ab6c38da51c03c9278671913fb848c643aef8f25f772b782cbbad42a1a9d5b8f1fc1fab32375437e8fe0ca7119b623a6
|
|
7
|
+
data.tar.gz: 66eb4b8254b6e799143884af82dae5636aac6de639b3bc896cf97e8872bca4a2b1d6952e7f795dc1dd1c56b5d58e17c8a12614c72a633efc06c01825fac4c63b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
|
+
## 4.0.2
|
|
2
|
+
- Change the log level of the SSLError for the handshake from **error** to **debug** https://github.com/logstash-plugins/logstash-input-tcp/pull/53
|
|
1
3
|
## 4.0.1
|
|
2
|
-
|
|
4
|
+
- Republish all the gems under jruby.
|
|
3
5
|
## 4.0.0
|
|
4
|
-
|
|
6
|
+
- Update the plugin to the version 2.0 of the plugin api, this change is required for Logstash 5.0 compatibility. See https://github.com/elastic/logstash/issues/5141
|
|
5
7
|
# 3.0.5
|
|
6
8
|
- Fixed a bug where using a certificate with a passphrase wouldn't work.
|
|
7
9
|
# 3.0.4
|
|
8
|
-
|
|
10
|
+
- Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
|
|
9
11
|
# 3.0.3
|
|
10
|
-
|
|
12
|
+
- New dependency requirements for logstash-core for the 5.0 release
|
|
11
13
|
## 3.0.2
|
|
12
|
-
- Fixed a bug where previous connection would accidentally be closed when accepting new socket connection
|
|
13
|
-
- Fixed an issue with log message which used a closed socket's peer address
|
|
14
|
+
- Fixed a bug where previous connection would accidentally be closed when accepting new socket connection
|
|
15
|
+
- Fixed an issue with log message which used a closed socket's peer address
|
|
14
16
|
|
|
15
17
|
## 3.0.1
|
|
16
18
|
- properly convert sslsubject to string before assigning to event field, added specs, see https://github.com/logstash-plugins/logstash-input-tcp/pull/38
|
data/lib/logstash/inputs/tcp.rb
CHANGED
|
@@ -118,7 +118,7 @@ class LogStash::Inputs::Tcp < LogStash::Inputs::Base
|
|
|
118
118
|
server_connection_thread(output_queue, socket)
|
|
119
119
|
rescue OpenSSL::SSL::SSLError => e
|
|
120
120
|
# log error, close socket, accept next connection
|
|
121
|
-
@logger.
|
|
121
|
+
@logger.debug? && @logger.debug("SSL Error", :exception => e, :backtrace => e.backtrace)
|
|
122
122
|
rescue => e
|
|
123
123
|
# if this exception occured while the plugin is stopping
|
|
124
124
|
# just ignore and exit
|
data/logstash-input-tcp.gemspec
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-input-tcp'
|
|
3
|
-
s.version = '4.0.
|
|
3
|
+
s.version = '4.0.2'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "Read events over a TCP socket."
|
|
6
6
|
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"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-tcp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-06-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|