logstash-input-tcp 6.4.3-java → 6.4.5-java
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 +6 -0
- data/lib/logstash/inputs/tcp.rb +1 -1
- data/lib/logstash-input-tcp_jars.rb +7 -7
- data/logstash-input-tcp.gemspec +1 -1
- data/spec/inputs/tcp_spec.rb +3 -1
- data/vendor/jar-dependencies/io/netty/netty-buffer/{4.1.114.Final/netty-buffer-4.1.114.Final.jar → 4.1.115.Final/netty-buffer-4.1.115.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-codec/{4.1.114.Final/netty-codec-4.1.114.Final.jar → 4.1.115.Final/netty-codec-4.1.115.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-common/{4.1.114.Final/netty-common-4.1.114.Final.jar → 4.1.115.Final/netty-common-4.1.115.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-handler/{4.1.114.Final/netty-handler-4.1.114.Final.jar → 4.1.115.Final/netty-handler-4.1.115.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport/{4.1.114.Final/netty-transport-4.1.114.Final.jar → 4.1.115.Final/netty-transport-4.1.115.Final.jar} +0 -0
- data/vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/{4.1.114.Final/netty-transport-native-unix-common-4.1.114.Final.jar → 4.1.115.Final/netty-transport-native-unix-common-4.1.115.Final.jar} +0 -0
- data/vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/6.4.5/logstash-input-tcp-6.4.5.jar +0 -0
- data/version +1 -1
- metadata +10 -10
- data/vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/6.4.3/logstash-input-tcp-6.4.3.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c437c83d308b89cc34db48fff685be23e74f67d6e51b6b420d47e2e624f689be
|
|
4
|
+
data.tar.gz: 315079c4028ae3e4c5b518268bcbcd8816442ce66d0ac8742351b3fba6712e1f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0b196fa9940c3d6ab66eae2ad95b9e38a86f87546c2ee78cc12d163ceabf7da39168d4b4d2d1706353fe654cc4f7406a5c0b9e444564b95d1edea5229a77b43b
|
|
7
|
+
data.tar.gz: e66b8c6c6ef3b7bd724260059b39e8ff871c69807ee9638f866550e6f017b37ac7123546d9c2954ca7e948ffb2cb96b3ab0c0a73ef66560b30517b3dcecc0e6c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 6.4.5
|
|
2
|
+
- Name netty threads with plugin id and their purpose [229](https://github.com/logstash-plugins/logstash-input-tcp/pull/229)
|
|
3
|
+
|
|
4
|
+
## 6.4.4
|
|
5
|
+
- update netty to 4.1.115 [#227](https://github.com/logstash-plugins/logstash-input-tcp/pull/227)
|
|
6
|
+
|
|
1
7
|
## 6.4.3
|
|
2
8
|
- update dependencies for tcp input [#224](https://github.com/logstash-plugins/logstash-input-tcp/pull/224)
|
|
3
9
|
|
data/lib/logstash/inputs/tcp.rb
CHANGED
|
@@ -181,7 +181,7 @@ class LogStash::Inputs::Tcp < LogStash::Inputs::Base
|
|
|
181
181
|
validate_ssl_config!
|
|
182
182
|
|
|
183
183
|
if server?
|
|
184
|
-
@loop = InputLoop.new(@host, @port, DecoderImpl.new(@codec, self), @tcp_keep_alive, java_ssl_context)
|
|
184
|
+
@loop = InputLoop.new(@id, @host, @port, DecoderImpl.new(@codec, self), @tcp_keep_alive, java_ssl_context)
|
|
185
185
|
end
|
|
186
186
|
end
|
|
187
187
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
|
|
2
2
|
|
|
3
3
|
require 'jar_dependencies'
|
|
4
|
-
require_jar('io.netty', 'netty-buffer', '4.1.
|
|
5
|
-
require_jar('io.netty', 'netty-codec', '4.1.
|
|
6
|
-
require_jar('io.netty', 'netty-common', '4.1.
|
|
7
|
-
require_jar('io.netty', 'netty-transport', '4.1.
|
|
8
|
-
require_jar('io.netty', 'netty-handler', '4.1.
|
|
9
|
-
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.
|
|
4
|
+
require_jar('io.netty', 'netty-buffer', '4.1.115.Final')
|
|
5
|
+
require_jar('io.netty', 'netty-codec', '4.1.115.Final')
|
|
6
|
+
require_jar('io.netty', 'netty-common', '4.1.115.Final')
|
|
7
|
+
require_jar('io.netty', 'netty-transport', '4.1.115.Final')
|
|
8
|
+
require_jar('io.netty', 'netty-handler', '4.1.115.Final')
|
|
9
|
+
require_jar('io.netty', 'netty-transport-native-unix-common', '4.1.115.Final')
|
|
10
10
|
require_jar('commons-io', 'commons-io', '2.17.0')
|
|
11
11
|
|
|
12
|
-
require_jar('org.logstash.inputs', 'logstash-input-tcp', '6.4.
|
|
12
|
+
require_jar('org.logstash.inputs', 'logstash-input-tcp', '6.4.5')
|
data/logstash-input-tcp.gemspec
CHANGED
|
@@ -6,7 +6,7 @@ Gem::Specification.new do |s|
|
|
|
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"
|
|
7
7
|
s.authors = ["Elastic"]
|
|
8
8
|
s.email = 'info@elastic.co'
|
|
9
|
-
s.homepage = "
|
|
9
|
+
s.homepage = "https://elastic.co/logstash"
|
|
10
10
|
s.platform = "java"
|
|
11
11
|
s.require_paths = ["lib", "vendor/jar-dependencies"]
|
|
12
12
|
|
data/spec/inputs/tcp_spec.rb
CHANGED
|
@@ -90,7 +90,9 @@ describe LogStash::Inputs::Tcp, :ecs_compatibility_support do
|
|
|
90
90
|
aggregate_failures("event #{i}") do
|
|
91
91
|
expect(event.get("message")).to eq("#{i} ☹")
|
|
92
92
|
expect(event.get(ecs_select[disabled: "host", v1: "[@metadata][input][tcp][source][name]"])).to eq("localhost").or eq("ip6-localhost")
|
|
93
|
-
|
|
93
|
+
ip_address = event.get(ecs_select[disabled: "[@metadata][ip_address]", v1: "[@metadata][input][tcp][source][ip]"])
|
|
94
|
+
# Account for both ipv4 or ipv6 localhost
|
|
95
|
+
expect(["127.0.0.1", "::1", "0:0:0:0:0:0:0:1"]).to include(ip_address)
|
|
94
96
|
end
|
|
95
97
|
end
|
|
96
98
|
end
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.4.
|
|
1
|
+
6.4.5
|
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: 6.4.
|
|
4
|
+
version: 6.4.5
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -246,15 +246,15 @@ files:
|
|
|
246
246
|
- spec/inputs/tcp_spec.rb
|
|
247
247
|
- spec/spec_helper.rb
|
|
248
248
|
- vendor/jar-dependencies/commons-io/commons-io/2.17.0/commons-io-2.17.0.jar
|
|
249
|
-
- vendor/jar-dependencies/io/netty/netty-buffer/4.1.
|
|
250
|
-
- vendor/jar-dependencies/io/netty/netty-codec/4.1.
|
|
251
|
-
- vendor/jar-dependencies/io/netty/netty-common/4.1.
|
|
252
|
-
- vendor/jar-dependencies/io/netty/netty-handler/4.1.
|
|
253
|
-
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.
|
|
254
|
-
- vendor/jar-dependencies/io/netty/netty-transport/4.1.
|
|
255
|
-
- vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/6.4.
|
|
249
|
+
- vendor/jar-dependencies/io/netty/netty-buffer/4.1.115.Final/netty-buffer-4.1.115.Final.jar
|
|
250
|
+
- vendor/jar-dependencies/io/netty/netty-codec/4.1.115.Final/netty-codec-4.1.115.Final.jar
|
|
251
|
+
- vendor/jar-dependencies/io/netty/netty-common/4.1.115.Final/netty-common-4.1.115.Final.jar
|
|
252
|
+
- vendor/jar-dependencies/io/netty/netty-handler/4.1.115.Final/netty-handler-4.1.115.Final.jar
|
|
253
|
+
- vendor/jar-dependencies/io/netty/netty-transport-native-unix-common/4.1.115.Final/netty-transport-native-unix-common-4.1.115.Final.jar
|
|
254
|
+
- vendor/jar-dependencies/io/netty/netty-transport/4.1.115.Final/netty-transport-4.1.115.Final.jar
|
|
255
|
+
- vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/6.4.5/logstash-input-tcp-6.4.5.jar
|
|
256
256
|
- version
|
|
257
|
-
homepage:
|
|
257
|
+
homepage: https://elastic.co/logstash
|
|
258
258
|
licenses:
|
|
259
259
|
- Apache License (2.0)
|
|
260
260
|
metadata:
|