logstash-input-beats 6.1.5-java → 6.1.6-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: dfd025acbb07379ea0d9fa66d381cd0aa88e92b7e3f0d162efff407cd27763b5
4
- data.tar.gz: f4071900f9e42da024156f3215699ecda37027ec137c6f5bb01d47daf9153562
3
+ metadata.gz: bdfb961f6671cbce9a01f9df53f0e2fa83ec6ac2f14521b51f2dfe32508b181b
4
+ data.tar.gz: ebf3b53c4b9efd6dd9be89b76e3d46ee2cae71f9c01d481fabddb4104e0ea546
5
5
  SHA512:
6
- metadata.gz: 902a418a13e1cf18e8c8125ed04a4f77f945786dcb9af0cfabb581ea5afe96199614bd3f240eba758897e677adc34948866394673550c061f19cf5b6bac5b4be
7
- data.tar.gz: aa57f6663812fece5e775878d10904d003654c25cd4931fcf02cb692ab6fcb235d9cbbf3925450df8078abc71c613b1b95d8d251d65f9e2d3fd4011ac4c3a161
6
+ metadata.gz: a060db6f3d84a1aaa41d7da73728c16d959484af1d85efce09ac811597288faf7d89a66bff10a7254f394ee51eb70b9723df8488b1c61916b9b48ea2bba6bc70
7
+ data.tar.gz: 467e8d01b6a2c94dcf0afffcea88aa967fb3518b6be42722691b85f4497864e8645d468b3adbdba07dd8900be23a9b858b50be3c005f777f4da49b021b40fd63
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
+ ## 6.1.6
2
+ - [DOC] Applied more attributes to manage plugin name in doc content, and implemented conditional text processing. [#423](https://github.com/logstash-plugins/logstash-input-http/pull/423)
3
+
1
4
  ## 6.1.5
2
- - Changed jar dependencies to reflect newer versions [#425](https://github.com/logstash-plugins/logstash-input-http/pull/425)
5
+ - Changed jar dependencies to reflect newer versions [#425](https://github.com/logstash-plugins/logstash-input-beats/pull/425)
3
6
 
4
7
  ## 6.1.4
5
8
  - Fix: reduce error logging on connection resets [#424](https://github.com/logstash-plugins/logstash-input-beats/pull/424)
data/VERSION CHANGED
@@ -1 +1 @@
1
- 6.1.5
1
+ 6.1.6
data/docs/index.asciidoc CHANGED
@@ -2,6 +2,7 @@
2
2
  :type: input
3
3
  :default_codec: plain
4
4
  :plugin-uc: Beats
5
+ :plugin-singular: Beat
5
6
 
6
7
  ///////////////////////////////////////////
7
8
  START - GENERATED VARIABLES, DO NOT EDIT!
@@ -19,18 +20,21 @@ END - GENERATED VARIABLES, DO NOT EDIT!
19
20
  === {plugin-uc} input plugin
20
21
 
21
22
  NOTE: The `input-elastic_agent` plugin is the next generation of the
22
- `input-beats` plugin. They currently share a common codebase.
23
+ `input-beats` plugin.
24
+ They currently share code and a https://github.com/logstash-plugins/logstash-input-beats[common codebase].
23
25
 
24
26
  include::{include_path}/plugin_header.asciidoc[]
25
27
 
26
28
  ==== Description
27
29
 
28
30
  This input plugin enables Logstash to receive events from the
29
- https://www.elastic.co/products/beats[Elastic Beats] framework.
31
+ {plugin-uc} framework.
30
32
 
31
33
  The following example shows how to configure Logstash to listen on port
32
34
  5044 for incoming {plugin-uc} connections and to index into Elasticsearch.
33
35
 
36
+ //Example for Beats
37
+ ifeval::["{plugin}"=="beats"]
34
38
  ["source","sh",subs="attributes"]
35
39
  -----
36
40
 
@@ -48,9 +52,8 @@ output {
48
52
  }
49
53
  -----
50
54
  <1> `%{[@metadata][beat]}` sets the first part of the index name to the value
51
- of the `beat` metadata field and `%{[@metadata][version]}` sets the second part to
52
- the {plugin-uc} version. For example:
53
- metricbeat-7.4.0.
55
+ of the metadata field and `%{[@metadata][version]}` sets the second part to
56
+ the {plugin-singular} version. For example: metricbeat-6.1.6.
54
57
 
55
58
  Events indexed into Elasticsearch with the Logstash configuration shown here
56
59
  will be similar to events directly indexed by {plugin-uc} into Elasticsearch.
@@ -59,14 +62,56 @@ NOTE: If ILM is not being used, set `index` to
59
62
  `%{[@metadata][beat]}-%{[@metadata][version]}-%{+YYYY.MM.dd}` instead so
60
63
  Logstash creates an index per day, based on the `@timestamp` value of the events
61
64
  coming from {plugin-uc}.
65
+ endif::[]
62
66
 
63
- IMPORTANT: If you are shipping events that span multiple lines, you need to use
67
+ //Example for Elastic Agent
68
+ ifeval::["{plugin}"!="beats"]
69
+ ["source","sh",subs="attributes"]
70
+ -----
71
+
72
+ input {
73
+ {plugin} {
74
+ port => 5044
75
+ }
76
+ }
77
+
78
+ output {
79
+ elasticsearch {
80
+ hosts => ["http://localhost:9200"]
81
+ data_stream => "true"
82
+ }
83
+ }
84
+ -----
85
+
86
+ Events indexed into Elasticsearch with the Logstash configuration shown here
87
+ will be similar to events directly indexed by {plugin-uc} into Elasticsearch.
88
+ endif::[]
89
+
90
+
91
+ //Content for Beats
92
+ ifeval::["{plugin}"=="beats"]
93
+ [id="plugins-{type}s-{plugin}-multiline"]
94
+ ===== Multi-line events
95
+
96
+ If you are shipping events that span multiple lines, you need to use
64
97
  the {filebeat-ref}/multiline-examples.html[configuration options available in
65
98
  Filebeat] to handle multiline events before sending the event data to Logstash.
66
99
  You cannot use the {logstash-ref}/plugins-codecs-multiline.html[Multiline codec
67
100
  plugin] to handle multiline events. Doing so will result in the failure to start
68
101
  Logstash.
102
+ endif::[]
103
+
104
+ //Content for Elastic Agent
105
+ ifeval::["{plugin}"!="beats"]
106
+ [id="plugins-{type}s-{plugin}-limitations"]
107
+ ===== Elastic Agent and Fleet limitations
108
+
109
+ Early releases of Elastic Agent and Fleet have some limitations, including support for advanced Beats settings like multiline, processors, and so forth.
110
+ For more information, see {fleet-guide}/fleet-limitations.html[Limitations of this release].
111
+ endif::[]
69
112
 
113
+ //Content for Beats
114
+ ifeval::["{plugin}"=="beats"]
70
115
  [id="plugins-{type}s-{plugin}-versioned-indexes"]
71
116
  ==== Versioned indices
72
117
 
@@ -89,6 +134,7 @@ Logstash `@timestamp` field.
89
134
 
90
135
  This configuration results in daily index names like
91
136
  +filebeat-{logstash_version}-{localdate}+.
137
+ endif::[]
92
138
 
93
139
 
94
140
  [id="plugins-{type}s-{plugin}-ecs_metadata"]
@@ -106,8 +152,8 @@ output.
106
152
  |=======================================================================
107
153
  |ECS disabled |ECS v1 |Availability |Description
108
154
 
109
- |[host] |[@metadata][input][beats][host][name] |Always |Name or address of the beat host
110
- |[@metadata][ip_address] |[@metadata][input][beats][host][ip] |Always |IP address of the Beats client
155
+ |[host] |[@metadata][input][beats][host][name] |Always |Name or address of the {plugin-singular} host
156
+ |[@metadata][ip_address] |[@metadata][input][beats][host][ip] |Always |IP address of the {plugin-uc} client
111
157
  |[@metadata][tls_peer][status] | [@metadata][tls_peer][status] | When SSL related fields are populated | Contains "verified"/"unverified" labels in `disabled`, `true`/`false` in `v1`
112
158
  |[@metadata][tls_peer][protocol] | [@metadata][input][beats][tls][version_protocol] | When SSL status is "verified" | Contains the TLS version used (e.g. `TLSv1.2`)
113
159
  |[@metadata][tls_peer][subject] | [@metadata][input][beats][tls][client][subject] | When SSL status is "verified" | Contains the identity name of the remote end (e.g. `CN=artifacts-no-kpi.elastic.co`)
@@ -115,7 +161,7 @@ output.
115
161
  |=======================================================================
116
162
 
117
163
  [id="plugins-{type}s-{plugin}-options"]
118
- ==== {plugin-uc} Input Configuration Options
164
+ ==== {plugin-uc} input configuration options
119
165
 
120
166
  This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
121
167
 
@@ -154,7 +200,7 @@ input plugins.
154
200
  * Value type is <<boolean,boolean>>
155
201
  * Default value is `false`
156
202
 
157
- Flag to determine whether to add `host` field to event using the value supplied by the beat in the `hostname` field.
203
+ Flag to determine whether to add `host` field to event using the value supplied by the {plugin-singular} in the `hostname` field.
158
204
 
159
205
 
160
206
  [id="plugins-{type}s-{plugin}-cipher_suites"]
@@ -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.5')
11
+ require_jar('org.logstash.beats', 'logstash-input-beats', '6.1.6')
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.5
4
+ version: 6.1.6
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-06-21 00:00:00.000000000 Z
11
+ date: 2021-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -20,8 +20,8 @@ dependencies:
20
20
  - !ruby/object:Gem::Version
21
21
  version: '2.99'
22
22
  name: logstash-core-plugin-api
23
- prerelease: false
24
23
  type: :runtime
24
+ prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
@@ -37,8 +37,8 @@ dependencies:
37
37
  - !ruby/object:Gem::Version
38
38
  version: '0'
39
39
  name: logstash-codec-plain
40
- prerelease: false
41
40
  type: :runtime
41
+ prerelease: false
42
42
  version_requirements: !ruby/object:Gem::Requirement
43
43
  requirements:
44
44
  - - ">="
@@ -51,8 +51,8 @@ dependencies:
51
51
  - !ruby/object:Gem::Version
52
52
  version: '1.0'
53
53
  name: concurrent-ruby
54
- prerelease: false
55
54
  type: :runtime
55
+ prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
57
57
  requirements:
58
58
  - - "~>"
@@ -65,8 +65,8 @@ dependencies:
65
65
  - !ruby/object:Gem::Version
66
66
  version: 0.3.5
67
67
  name: thread_safe
68
- prerelease: false
69
68
  type: :runtime
69
+ prerelease: false
70
70
  version_requirements: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - "~>"
@@ -79,8 +79,8 @@ dependencies:
79
79
  - !ruby/object:Gem::Version
80
80
  version: 2.0.5
81
81
  name: logstash-codec-multiline
82
- prerelease: false
83
82
  type: :runtime
83
+ prerelease: false
84
84
  version_requirements: !ruby/object:Gem::Requirement
85
85
  requirements:
86
86
  - - ">="
@@ -96,8 +96,8 @@ dependencies:
96
96
  - !ruby/object:Gem::Version
97
97
  version: 0.3.4
98
98
  name: jar-dependencies
99
- prerelease: false
100
99
  type: :runtime
100
+ prerelease: false
101
101
  version_requirements: !ruby/object:Gem::Requirement
102
102
  requirements:
103
103
  - - "~>"
@@ -113,8 +113,8 @@ dependencies:
113
113
  - !ruby/object:Gem::Version
114
114
  version: '1.1'
115
115
  name: logstash-mixin-ecs_compatibility_support
116
- prerelease: false
117
116
  type: :runtime
117
+ prerelease: false
118
118
  version_requirements: !ruby/object:Gem::Requirement
119
119
  requirements:
120
120
  - - "~>"
@@ -127,8 +127,8 @@ dependencies:
127
127
  - !ruby/object:Gem::Version
128
128
  version: 0.0.6
129
129
  name: flores
130
- prerelease: false
131
130
  type: :development
131
+ prerelease: false
132
132
  version_requirements: !ruby/object:Gem::Requirement
133
133
  requirements:
134
134
  - - "~>"
@@ -141,8 +141,8 @@ dependencies:
141
141
  - !ruby/object:Gem::Version
142
142
  version: '0'
143
143
  name: rspec
144
- prerelease: false
145
144
  type: :development
145
+ prerelease: false
146
146
  version_requirements: !ruby/object:Gem::Requirement
147
147
  requirements:
148
148
  - - ">="
@@ -155,8 +155,8 @@ dependencies:
155
155
  - !ruby/object:Gem::Version
156
156
  version: '0'
157
157
  name: stud
158
- prerelease: false
159
158
  type: :development
159
+ prerelease: false
160
160
  version_requirements: !ruby/object:Gem::Requirement
161
161
  requirements:
162
162
  - - ">="
@@ -169,8 +169,8 @@ dependencies:
169
169
  - !ruby/object:Gem::Version
170
170
  version: '0'
171
171
  name: pry
172
- prerelease: false
173
172
  type: :development
173
+ prerelease: false
174
174
  version_requirements: !ruby/object:Gem::Requirement
175
175
  requirements:
176
176
  - - ">="
@@ -183,8 +183,8 @@ dependencies:
183
183
  - !ruby/object:Gem::Version
184
184
  version: '0'
185
185
  name: rspec-wait
186
- prerelease: false
187
186
  type: :development
187
+ prerelease: false
188
188
  version_requirements: !ruby/object:Gem::Requirement
189
189
  requirements:
190
190
  - - ">="
@@ -197,8 +197,8 @@ dependencies:
197
197
  - !ruby/object:Gem::Version
198
198
  version: '0'
199
199
  name: logstash-devutils
200
- prerelease: false
201
200
  type: :development
201
+ prerelease: false
202
202
  version_requirements: !ruby/object:Gem::Requirement
203
203
  requirements:
204
204
  - - ">="
@@ -211,8 +211,8 @@ dependencies:
211
211
  - !ruby/object:Gem::Version
212
212
  version: '0'
213
213
  name: logstash-codec-json
214
- prerelease: false
215
214
  type: :development
215
+ prerelease: false
216
216
  version_requirements: !ruby/object:Gem::Requirement
217
217
  requirements:
218
218
  - - ">="
@@ -225,8 +225,8 @@ dependencies:
225
225
  - !ruby/object:Gem::Version
226
226
  version: '0'
227
227
  name: childprocess
228
- prerelease: false
229
228
  type: :development
229
+ prerelease: false
230
230
  version_requirements: !ruby/object:Gem::Requirement
231
231
  requirements:
232
232
  - - ">="
@@ -285,7 +285,7 @@ files:
285
285
  - vendor/jar-dependencies/io/netty/netty-all/4.1.65.Final/netty-all-4.1.65.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.5/logstash-input-beats-6.1.5.jar
288
+ - vendor/jar-dependencies/org/logstash/beats/logstash-input-beats/6.1.6/logstash-input-beats-6.1.6.jar
289
289
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
290
290
  licenses:
291
291
  - Apache License (2.0)
@@ -308,8 +308,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
308
308
  - !ruby/object:Gem::Version
309
309
  version: '0'
310
310
  requirements: []
311
- rubyforge_project:
312
- rubygems_version: 2.6.13
311
+ rubygems_version: 3.0.6
313
312
  signing_key:
314
313
  specification_version: 4
315
314
  summary: Receives events from the Elastic Beats framework