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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ff39d824fc950f06e37d4de5a78f92e37189a83f
4
- data.tar.gz: 9901966bb39356121c7210d269ff2112ab12a736
3
+ metadata.gz: 9cb898ba93ef498a977490b2a11a2045c9b23ff3
4
+ data.tar.gz: 1ecf95d438a625c1d32c876226e2b22a7f352b2f
5
5
  SHA512:
6
- metadata.gz: f8da37fe28a6b0ebc00cc8391de9f91b2e9dea9ac0921b8ad02b3963c459dbf6561e4e78ca79b962c8f0339284ec6e62e92edb6accacdf247ca995a47840fef5
7
- data.tar.gz: 280312607b7a21741bae5935fdb83f5e40f1eb36d6cfb75c05be3ce52af8836ea3c3d6c57524a40489469a7c418975ef2a5cab94d9ebf1ad37dd290502152099
6
+ metadata.gz: 21c362794fea1ab02712ed11b3447e64581e2860f6514cf98b624b8254c32b7dbd0e7fed4444644f329af754e1bd5fc4e505ec4ff3f9f8dd480e63d9d669894b
7
+ data.tar.gz: e47eba26feebac095c5ad5bef8f4198add9956b2b6a308db57a2958c444e805a21a16322380fcca53ace19b673f71c3308a53f0ed581c2aab8c20b6a38995583
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 5.0.0
2
+ - Mark deprecated congestion_threshold and target_field_for_codec as obsolete
3
+
1
4
  ## 4.0.5
2
5
  - Additional default cipher PR#242
3
6
  - Fix logging from Java
data/VERSION CHANGED
@@ -1 +1 @@
1
- 4.0.5
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', '4.0.5')
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, :default => 5, :deprecated => "This option is now deprecated since congestion control is done automatically"
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, :default => "message", :deprecated => "This option is now deprecated, the plugin is now compatible with Filebeat and Logstash-Forwarder"
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
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.0.5
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-12 00:00:00.000000000 Z
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/4.0.5/logstash-input-beats-4.0.5.jar
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)