logstash-input-beats 4.0.5-java → 5.0.0-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 +3 -0
- data/VERSION +1 -1
- data/docs/index.asciidoc +0 -19
- data/lib/logstash-input-beats_jars.rb +1 -1
- data/lib/logstash/inputs/beats.rb +2 -2
- data/vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/{4.0.5/logstash-input-beats-4.0.5.jar → 5.0.0/logstash-input-beats-5.0.0.jar} +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9cb898ba93ef498a977490b2a11a2045c9b23ff3
|
|
4
|
+
data.tar.gz: 1ecf95d438a625c1d32c876226e2b22a7f352b2f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21c362794fea1ab02712ed11b3447e64581e2860f6514cf98b624b8254c32b7dbd0e7fed4444644f329af754e1bd5fc4e505ec4ff3f9f8dd480e63d9d669894b
|
|
7
|
+
data.tar.gz: e47eba26feebac095c5ad5bef8f4198add9956b2b6a308db57a2958c444e805a21a16322380fcca53ace19b673f71c3308a53f0ed581c2aab8c20b6a38995583
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
5.0.0
|
data/docs/index.asciidoc
CHANGED
|
@@ -101,16 +101,6 @@ The list of ciphers suite to use, listed by priorities.
|
|
|
101
101
|
|
|
102
102
|
Close Idle clients after X seconds of inactivity.
|
|
103
103
|
|
|
104
|
-
[id="plugins-{type}s-{plugin}-congestion_threshold"]
|
|
105
|
-
===== `congestion_threshold` (DEPRECATED)
|
|
106
|
-
|
|
107
|
-
* DEPRECATED WARNING: This configuration item is deprecated and may not be available in future versions.
|
|
108
|
-
* Value type is <<number,number>>
|
|
109
|
-
* Default value is `5`
|
|
110
|
-
|
|
111
|
-
The number of seconds before we raise a timeout.
|
|
112
|
-
This option is useful to control how much time to wait if something is blocking the pipeline.
|
|
113
|
-
|
|
114
104
|
[id="plugins-{type}s-{plugin}-host"]
|
|
115
105
|
===== `host`
|
|
116
106
|
|
|
@@ -208,15 +198,6 @@ If the client doesn't provide a certificate, the connection will be closed.
|
|
|
208
198
|
|
|
209
199
|
This option needs to be used with `ssl_certificate_authorities` and a defined list of CAs.
|
|
210
200
|
|
|
211
|
-
[id="plugins-{type}s-{plugin}-target_field_for_codec"]
|
|
212
|
-
===== `target_field_for_codec` (DEPRECATED)
|
|
213
|
-
|
|
214
|
-
* DEPRECATED WARNING: This configuration item is deprecated and may not be available in future versions.
|
|
215
|
-
* Value type is <<string,string>>
|
|
216
|
-
* Default value is `"message"`
|
|
217
|
-
|
|
218
|
-
This is the default field to which the specified codec will be applied.
|
|
219
|
-
|
|
220
201
|
[id="plugins-{type}s-{plugin}-tls_max_version"]
|
|
221
202
|
===== `tls_max_version`
|
|
222
203
|
|
|
@@ -9,4 +9,4 @@ require_jar('com.fasterxml.jackson.core', 'jackson-annotations', '2.7.5')
|
|
|
9
9
|
require_jar('com.fasterxml.jackson.core', 'jackson-databind', '2.7.5')
|
|
10
10
|
require_jar('com.fasterxml.jackson.module', 'jackson-module-afterburner', '2.7.5')
|
|
11
11
|
require_jar('org.apache.logging.log4j', 'log4j-api', '2.6.2')
|
|
12
|
-
require_jar('org.logstash.beats', 'logstash-input-beats', '
|
|
12
|
+
require_jar('org.logstash.beats', 'logstash-input-beats', '5.0.0')
|
|
@@ -100,10 +100,10 @@ class LogStash::Inputs::Beats < LogStash::Inputs::Base
|
|
|
100
100
|
|
|
101
101
|
# The number of seconds before we raise a timeout.
|
|
102
102
|
# This option is useful to control how much time to wait if something is blocking the pipeline.
|
|
103
|
-
config :congestion_threshold, :validate => :number, :
|
|
103
|
+
config :congestion_threshold, :validate => :number, :obsolete => "This option is obsolete since congestion control is done automatically"
|
|
104
104
|
|
|
105
105
|
# This is the default field to which the specified codec will be applied.
|
|
106
|
-
config :target_field_for_codec, :validate => :string, :
|
|
106
|
+
config :target_field_for_codec, :validate => :string, :obsolete => "This option is obsolete"
|
|
107
107
|
|
|
108
108
|
# The minimum TLS version allowed for the encrypted connections. The value must be one of the following:
|
|
109
109
|
# 1.0 for TLS 1.0, 1.1 for TLS 1.1, 1.2 for TLS 1.2
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-beats
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 5.0.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-07-
|
|
11
|
+
date: 2017-07-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -264,7 +264,7 @@ files:
|
|
|
264
264
|
- vendor/jar-dependencies/io/netty/netty-tcnative-boringssl-static/1.1.33.Fork23/netty-tcnative-boringssl-static-1.1.33.Fork23.jar
|
|
265
265
|
- vendor/jar-dependencies/org/apache/logging/log4j/log4j-api/2.6.2/log4j-api-2.6.2.jar
|
|
266
266
|
- vendor/jar-dependencies/org/javassist/javassist/3.20.0-GA/javassist-3.20.0-GA.jar
|
|
267
|
-
- vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/
|
|
267
|
+
- vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/5.0.0/logstash-input-beats-5.0.0.jar
|
|
268
268
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
269
269
|
licenses:
|
|
270
270
|
- Apache License (2.0)
|