logstash-input-beats 6.1.1-java → 6.1.2-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 +17 -12
- data/lib/logstash-input-beats_jars.rb +1 -1
- data/vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/{6.1.1/logstash-input-beats-6.1.1.jar → 6.1.2/logstash-input-beats-6.1.2.jar} +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 93be68545c73c99fadedfbc85c39ca333da359204980ac825ca7ee3cacda5595
|
|
4
|
+
data.tar.gz: e5dc98aba318950d3aa4f8d2c8ae47e6bb42fd928b0d484b2ae7e7aa321fa83e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 91149e12bae583a7386b740331302ceadf518ce973dac0a75f0288551f2717d648fad25a54b6a49f1a472467496c4eba5476dc4e6d3a0aae6368a576c5c78e89
|
|
7
|
+
data.tar.gz: 552642c0592c7d09387f737b1cf520d02d9b5d1bbf8c958bd90fb698f763385300490b173d03768d0584951cb1409e10a4248490c327344934e9c4986c4d827b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 6.1.2
|
|
2
|
+
- [DOC] Added naming attribute to control plugin name that appears in docs, and set up framework to make attributes viable in code sample
|
|
3
|
+
|
|
1
4
|
## 6.1.1
|
|
2
5
|
- [DOC] Enhanced ECS compatibility information for ease of use and readability
|
|
3
6
|
[#413](https://github.com/logstash-plugins/logstash-input-beats/pull/413)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.1.
|
|
1
|
+
6.1.2
|
data/docs/index.asciidoc
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
:plugin: beats
|
|
2
2
|
:type: input
|
|
3
3
|
:default_codec: plain
|
|
4
|
+
:plugin-uc: Beats
|
|
4
5
|
|
|
5
6
|
///////////////////////////////////////////
|
|
6
7
|
START - GENERATED VARIABLES, DO NOT EDIT!
|
|
@@ -15,7 +16,7 @@ END - GENERATED VARIABLES, DO NOT EDIT!
|
|
|
15
16
|
|
|
16
17
|
[id="plugins-{type}s-{plugin}"]
|
|
17
18
|
|
|
18
|
-
===
|
|
19
|
+
=== {plugin-uc} input plugin
|
|
19
20
|
|
|
20
21
|
include::{include_path}/plugin_header.asciidoc[]
|
|
21
22
|
|
|
@@ -25,9 +26,9 @@ This input plugin enables Logstash to receive events from the
|
|
|
25
26
|
https://www.elastic.co/products/beats[Elastic Beats] framework.
|
|
26
27
|
|
|
27
28
|
The following example shows how to configure Logstash to listen on port
|
|
28
|
-
5044 for incoming
|
|
29
|
+
5044 for incoming {plugin-uc} connections and to index into Elasticsearch.
|
|
29
30
|
|
|
30
|
-
[source,
|
|
31
|
+
["source","sh",subs="attributes"]
|
|
31
32
|
-----
|
|
32
33
|
|
|
33
34
|
input {
|
|
@@ -45,16 +46,16 @@ output {
|
|
|
45
46
|
-----
|
|
46
47
|
<1> `%{[@metadata][beat]}` sets the first part of the index name to the value
|
|
47
48
|
of the `beat` metadata field and `%{[@metadata][version]}` sets the second part to
|
|
48
|
-
the
|
|
49
|
+
the {plugin-uc}'s version. For example:
|
|
49
50
|
metricbeat-7.4.0.
|
|
50
51
|
|
|
51
52
|
Events indexed into Elasticsearch with the Logstash configuration shown here
|
|
52
|
-
will be similar to events directly indexed by
|
|
53
|
+
will be similar to events directly indexed by {plugin-uc} into Elasticsearch.
|
|
53
54
|
|
|
54
55
|
NOTE: If ILM is not being used, set `index` to
|
|
55
56
|
`%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}` instead so
|
|
56
57
|
Logstash creates an index per day, based on the `@timestamp` value of the events
|
|
57
|
-
coming from
|
|
58
|
+
coming from {plugin-uc}.
|
|
58
59
|
|
|
59
60
|
IMPORTANT: If you are shipping events that span multiple lines, you need to use
|
|
60
61
|
the {filebeat-ref}/multiline-examples.html[configuration options available in
|
|
@@ -64,7 +65,7 @@ plugin] to handle multiline events. Doing so will result in the failure to start
|
|
|
64
65
|
Logstash.
|
|
65
66
|
|
|
66
67
|
[id="plugins-{type}s-{plugin}-versioned-indexes"]
|
|
67
|
-
==== Versioned
|
|
68
|
+
==== Versioned indices
|
|
68
69
|
|
|
69
70
|
To minimize the impact of future schema changes on your existing indices and
|
|
70
71
|
mappings in Elasticsearch, configure the Elasticsearch output to write to
|
|
@@ -89,10 +90,14 @@ This configuration results in daily index names like
|
|
|
89
90
|
|
|
90
91
|
[id="plugins-{type}s-{plugin}-ecs_metadata"]
|
|
91
92
|
==== Event Metadata and the Elastic Common Schema (ECS)
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
93
|
+
|
|
94
|
+
When decoding {plugin-uc} events, this plugin adds two fields related to the event:
|
|
95
|
+
the deprecated `host` which contains the `hostname` provided by {plugin-uc} and the
|
|
96
|
+
`ip_address` containing the remote address of the client's connection. When
|
|
97
|
+
<<plugins-{type}s-{plugin}-ecs_compatibility,ECS compatibility mode>> is enabled
|
|
98
|
+
these are now moved in ECS compatible namespace. Here's how
|
|
99
|
+
<<plugins-{type}s-{plugin}-ecs_compatibility,ECS compatibility mode>> affects
|
|
100
|
+
output.
|
|
96
101
|
|
|
97
102
|
[cols="<l,<l,e,<e"]
|
|
98
103
|
|=======================================================================
|
|
@@ -107,7 +112,7 @@ enabled these are now moved in ECS compatible namespace. Here's how <<plugins-{t
|
|
|
107
112
|
|=======================================================================
|
|
108
113
|
|
|
109
114
|
[id="plugins-{type}s-{plugin}-options"]
|
|
110
|
-
====
|
|
115
|
+
==== {plugin-uc} Input Configuration Options
|
|
111
116
|
|
|
112
117
|
This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
|
|
113
118
|
|
|
@@ -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.4')
|
|
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.
|
|
11
|
+
require_jar('org.logstash.beats', 'logstash-input-beats', '6.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: 6.1.
|
|
4
|
+
version: 6.1.2
|
|
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-04-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -286,7 +286,7 @@ files:
|
|
|
286
286
|
- vendor/jar-dependencies/io/netty/netty-all/4.1.49.Final/netty-all-4.1.49.Final.jar
|
|
287
287
|
- vendor/jar-dependencies/org/apache/logging/log4j/log4j-api/2.11.1/log4j-api-2.11.1.jar
|
|
288
288
|
- vendor/jar-dependencies/org/javassist/javassist/3.24.0-GA/javassist-3.24.0-GA.jar
|
|
289
|
-
- vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.1.
|
|
289
|
+
- vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.1.2/logstash-input-beats-6.1.2.jar
|
|
290
290
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
|
291
291
|
licenses:
|
|
292
292
|
- Apache License (2.0)
|