logstash-input-beats 6.1.3-java → 6.1.4-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3d70597b1b447c581f1a7c6d9757aeff377cb57f9e0bf30ae62a1a82ae2e3d7
4
- data.tar.gz: f2fbd686d950b35fb9d337330e226029b4dce5eaaf56e3ac31722cc6dbd849ac
3
+ metadata.gz: 01075715620de7282a22c602c6a3b22c337f485ddea79a83090b889ef8d1027e
4
+ data.tar.gz: e8b716cc2641203ef9ebc0b7335e2435e8b15c4b1a3a04ae49e28e567f75d1fc
5
5
  SHA512:
6
- metadata.gz: 892b7166ecd256432677e4bda1dbc2ebd4c9555fc2aecf26e73ed0d2747b2e736b6e1421582b3ec786ba6bef4c6a705c4c0a6d0b54423980c0f9f7ddbf4ddaf9
7
- data.tar.gz: e8101ebad94b1924d68a2000b8c2b9c9996ef2634fcb1e8d87d445e64941b5278b6af8c24d7f93e3c271638028f36f258c717d9401595c213a3f99ec46f138ed
6
+ metadata.gz: 2b693326cae6afba65c266e1dbcbb492db74f1742a3b6aed01b2b4eda21fd1e32c6f70e819d98f3dea34b9f6df632aae2a73f5b027c2d721b63330d6ffa20533
7
+ data.tar.gz: 1fdf0f6111f9014e5c460b131bbbe3a29e6dc76eb59bd95e6de147bb6ba4e1d39749273a8f2d26a498a9c978b78732381513b638ad74e5185ba0f4d2ea2dff2f
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 6.1.4
2
+ - Fix: reduce error logging on connection resets [#424](https://github.com/logstash-plugins/logstash-input-beats/pull/424)
3
+
1
4
  ## 6.1.3
2
5
  - Fix: safe-guard byte buf allocation [#420](https://github.com/logstash-plugins/logstash-input-beats/pull/420)
3
6
  - Updated Jackson dependencies
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.1.3
1
+ 6.1.4
data/docs/index.asciidoc CHANGED
@@ -18,6 +18,9 @@ END - GENERATED VARIABLES, DO NOT EDIT!
18
18
 
19
19
  === {plugin-uc} input plugin
20
20
 
21
+ NOTE: The `input-elastic_agent` plugin is the next generation of the
22
+ `input-beats` plugin. They currently share a common codebase.
23
+
21
24
  include::{include_path}/plugin_header.asciidoc[]
22
25
 
23
26
  ==== Description
@@ -32,7 +35,7 @@ The following example shows how to configure Logstash to listen on port
32
35
  -----
33
36
 
34
37
  input {
35
- beats {
38
+ {plugin} {
36
39
  port => 5044
37
40
  }
38
41
  }
@@ -46,7 +49,7 @@ output {
46
49
  -----
47
50
  <1> `%{[@metadata][beat]}` sets the first part of the index name to the value
48
51
  of the `beat` metadata field and `%{[@metadata][version]}` sets the second part to
49
- the {plugin-uc}'s version. For example:
52
+ the {plugin-uc} version. For example:
50
53
  metricbeat-7.4.0.
51
54
 
52
55
  Events indexed into Elasticsearch with the Logstash configuration shown here
@@ -8,4 +8,4 @@ require_jar('com.fasterxml.jackson.core', 'jackson-annotations', '2.9.10')
8
8
  require_jar('com.fasterxml.jackson.core', 'jackson-databind', '2.9.10.8')
9
9
  require_jar('com.fasterxml.jackson.module', 'jackson-module-afterburner', '2.9.10')
10
10
  require_jar('org.apache.logging.log4j', 'log4j-api', '2.11.1')
11
- require_jar('org.logstash.beats', 'logstash-input-beats', '6.1.3')
11
+ require_jar('org.logstash.beats', 'logstash-input-beats', '6.1.4')
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: 6.1.3
4
+ version: 6.1.4
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-04-21 00:00:00.000000000 Z
11
+ date: 2021-06-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -285,7 +285,7 @@ files:
285
285
  - vendor/jar-dependencies/io/netty/netty-all/4.1.49.Final/netty-all-4.1.49.Final.jar
286
286
  - vendor/jar-dependencies/org/apache/logging/log4j/log4j-api/2.11.1/log4j-api-2.11.1.jar
287
287
  - vendor/jar-dependencies/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.jar
288
- - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.1.3/logstash-input-beats-6.1.3.jar
288
+ - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.1.4/logstash-input-beats-6.1.4.jar
289
289
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
290
290
  licenses:
291
291
  - Apache License (2.0)