logstash-input-tcp 6.0.7-java → 6.0.8-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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 574feed9b3754fbb15bad08e4d670e9771261f1f90cbe45731fd3fd58b30deec
|
|
4
|
+
data.tar.gz: 259fc46a2885620249b23bd3d927a0a9948fc71544a7ea775569098e005da9e0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 55d972be5de090da3e6142a54413064590495b2773b1c6bc21579e3e80ff644ba57b4a7a1083bf629fddd6e4ac85282ea74e5d9da4f05810b5cb45c50f176bfb
|
|
7
|
+
data.tar.gz: 662ca5182f7b4e4b6f40479c5a984eed7df2837c1853b1d42632270a239b162cfd490ec4d5079b59aa2cf1e6480bf3acf2e846fe268d8f3c836ea6d19daa66e5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 6.0.8
|
|
2
|
+
- [DOC] better description for `tcp_keep_alive` option [#169](https://github.com/logstash-plugins/logstash-input-tcp/pull/169)
|
|
3
|
+
|
|
1
4
|
## 6.0.7
|
|
2
5
|
- Fix: reduce error logging (to info level) on connection resets [#168](https://github.com/logstash-plugins/logstash-input-tcp/pull/168)
|
|
3
6
|
- Refactor: only patch Socket classes once (on first input)
|
data/docs/index.asciidoc
CHANGED
|
@@ -202,7 +202,9 @@ For input, sets the field `sslsubject` to that of the client certificate.
|
|
|
202
202
|
* Value type is <<boolean,boolean>>
|
|
203
203
|
* Default value is `false`
|
|
204
204
|
|
|
205
|
-
Instruct the socket to use TCP keep
|
|
205
|
+
Instruct the socket to use TCP keep alive. If it's `true` then the underlying socket
|
|
206
|
+
will use the OS defaults settings for keep alive. If it's `false` it doesn't configure any
|
|
207
|
+
keep alive setting for the underlying socket.
|
|
206
208
|
|
|
207
209
|
[id="plugins-{type}s-{plugin}-dns_reverse_lookup_enabled"]
|
|
208
210
|
===== `dns_reverse_lookup_enabled`
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
:plugin: tcp-test
|
|
2
|
+
:type: input
|
|
3
|
+
:default_codec: line
|
|
4
|
+
|
|
5
|
+
///////////////////////////////////////////
|
|
6
|
+
START - GENERATED VARIABLES, DO NOT EDIT!
|
|
7
|
+
///////////////////////////////////////////
|
|
8
|
+
:version: %VERSION%
|
|
9
|
+
:release_date: %RELEASE_DATE%
|
|
10
|
+
:changelog_url: %CHANGELOG_URL%
|
|
11
|
+
:include_path: ../../../../logstash/docs/include
|
|
12
|
+
///////////////////////////////////////////
|
|
13
|
+
END - GENERATED VARIABLES, DO NOT EDIT!
|
|
14
|
+
///////////////////////////////////////////
|
|
15
|
+
|
|
16
|
+
[id="plugins-{type}s-{plugin}"]
|
|
17
|
+
|
|
18
|
+
=== Tcp-test input plugin
|
|
19
|
+
|
|
20
|
+
include::{include_path}/plugin_header.asciidoc[]
|
|
21
|
+
|
|
22
|
+
==== Description
|
|
23
|
+
|
|
24
|
+
This is only a test.
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
[id="plugins-{type}s-{plugin}-common-options"]
|
|
28
|
+
include::{include_path}/{type}.asciidoc[]
|
|
29
|
+
|
|
30
|
+
:default_codec!:
|
|
Binary file
|
data/version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.0.
|
|
1
|
+
6.0.8
|
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.0.
|
|
4
|
+
version: 6.0.8
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -171,6 +171,7 @@ files:
|
|
|
171
171
|
- NOTICE.TXT
|
|
172
172
|
- README.md
|
|
173
173
|
- docs/index.asciidoc
|
|
174
|
+
- docs/testfile.asciidoc
|
|
174
175
|
- lib/logstash-input-tcp_jars.rb
|
|
175
176
|
- lib/logstash/inputs/tcp.rb
|
|
176
177
|
- lib/logstash/inputs/tcp/compat_ssl_options.rb
|
|
@@ -178,7 +179,7 @@ files:
|
|
|
178
179
|
- logstash-input-tcp.gemspec
|
|
179
180
|
- spec/inputs/tcp_spec.rb
|
|
180
181
|
- spec/spec_helper.rb
|
|
181
|
-
- vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/6.0.
|
|
182
|
+
- vendor/jar-dependencies/org/logstash/inputs/logstash-input-tcp/6.0.8/logstash-input-tcp-6.0.8.jar
|
|
182
183
|
- version
|
|
183
184
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
184
185
|
licenses:
|