logstash-input-udp 3.4.0 → 3.4.1
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/docs/index.asciidoc +6 -4
- data/logstash-input-udp.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2ba03e1c77b42ddb3277f9c32257c802e816f9b3f66beb01c6324f07ef10a304
|
|
4
|
+
data.tar.gz: f06690123677ae1de68260cf64f74cbeee29feaf9499f99b253266a158bb6fdf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82c728db25566d1203afc8c40afe4a5f67e7c7852fc1e24c1eec85c041b7dc8523516a2a9fe58af7e07c7c0487b877616cff50bc00b1592bfe7086329aad1418
|
|
7
|
+
data.tar.gz: 69cc686c2464cd43e16c2ce9d5447fde7309485cbac54c4be78e1727423ac5eab317c9f603aa4c828747e1e5f4c24c3c5d0d2f14d3a80f340adfb8a8a735a34e
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 3.4.1
|
|
2
|
+
- [DOC] Fixed typo in code sample [#54](https://github.com/logstash-plugins/logstash-input-udp/pull/54)
|
|
3
|
+
|
|
1
4
|
## 3.4.0
|
|
2
5
|
- Added ECS compatibility mode (`disabled` and `v1`) to rename ip source address in a ECS compliant name [#50](https://github.com/logstash-plugins/logstash-input-udp/pull/50)
|
|
3
6
|
- Fixed integration tests for IPv6 downgrading Docker to version 2.4 [#51](https://github.com/logstash-plugins/logstash-input-udp/pull/51)
|
data/docs/index.asciidoc
CHANGED
|
@@ -31,8 +31,9 @@ will listen on for event streams.
|
|
|
31
31
|
|
|
32
32
|
This plugin adds a field containing the source IP address of the UDP packet.
|
|
33
33
|
By default, the IP address is stored in the host field.
|
|
34
|
-
When ECS is enabled (in
|
|
35
|
-
source IP address is stored
|
|
34
|
+
When {ecs-ref}[Elastic Common Schema (ECS)] is enabled (in
|
|
35
|
+
<<plugins-{type}s-{plugin}-ecs_compatibility>>), the source IP address is stored
|
|
36
|
+
in the [host][ip] field.
|
|
36
37
|
|
|
37
38
|
You can customize the field name using the <<plugins-{type}s-{plugin}-source_ip_fieldname>>.
|
|
38
39
|
See <<plugins-{type}s-{plugin}-ecs_compatibility>> for more information.
|
|
@@ -80,7 +81,8 @@ The maximum packet size to read from the network
|
|
|
80
81
|
** When Logstash provides a `pipeline.ecs_compatibility` setting, its value is used as the default
|
|
81
82
|
** Otherwise, the default value is `disabled`.
|
|
82
83
|
|
|
83
|
-
Controls this plugin's compatibility with the
|
|
84
|
+
Controls this plugin's compatibility with the {ecs-ref}[Elastic Common Schema (ECS)].
|
|
85
|
+
|
|
84
86
|
The value of this setting affects the placement of a TCP connection's metadata on events.
|
|
85
87
|
|
|
86
88
|
.Metadata Location by `ecs_compatibility` value
|
|
@@ -142,7 +144,7 @@ Example:
|
|
|
142
144
|
[source,ruby]
|
|
143
145
|
input {
|
|
144
146
|
udp {
|
|
145
|
-
source_ip_fieldname => "[
|
|
147
|
+
source_ip_fieldname => "[appliance][monitoring][ip]"
|
|
146
148
|
}
|
|
147
149
|
}
|
|
148
150
|
|
data/logstash-input-udp.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-input-udp'
|
|
4
|
-
s.version = '3.4.
|
|
4
|
+
s.version = '3.4.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Reads events over UDP"
|
|
7
7
|
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-input-udp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.4.
|
|
4
|
+
version: 3.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-03-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|