logstash-filter-mutate 3.5.2 → 3.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/docs/index.asciidoc +7 -0
- data/logstash-filter-mutate.gemspec +1 -1
- metadata +3 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 587a9f7cf3dcffcf1e5da205f346757a2cadb152355e8a5875786db76f1744b7
|
4
|
+
data.tar.gz: aebf9138588e966faa0ea10400473ef009bb6af43e7e8a03a00902d86ca45da7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7193aa164fba5286cce8d33eae0575af9f1c94d61c952edb90ccf0b14fc080b4aac0cb33a90a7206b61ed8f04cab7dc2239d843860601c7acd98f94a4f4c3e74
|
7
|
+
data.tar.gz: 4724a7e02686459741deed8125ba9595725e4939f3d328259b60b1dd80c4d902245228e4fc8335ecd984c9484e4e81083068a165ab63082f50c3b36e47c15c01
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 3.5.3
|
2
|
+
- DOC: Expand description and behaviors for `rename` option [#156](https://github.com/logstash-plugins/logstash-filter-mutate/pull/156)
|
3
|
+
|
1
4
|
## 3.5.2
|
2
5
|
- Fix: ensure that when an error occurs during registration, we use the correct i18n key to propagate the error message in a useful manner [#154](https://github.com/logstash-plugins/logstash-filter-mutate/pull/154)
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
@@ -265,6 +265,13 @@ Example:
|
|
265
265
|
|
266
266
|
Rename one or more fields.
|
267
267
|
|
268
|
+
If the destination field already exists, its value is replaced.
|
269
|
+
|
270
|
+
If one of the source fields doesn't exist, no action is performed for that field.
|
271
|
+
(This is not considered an error; the `tag_on_failure` tag is not applied.)
|
272
|
+
|
273
|
+
When renaming multiple fields, the order of operations is not guaranteed.
|
274
|
+
|
268
275
|
Example:
|
269
276
|
[source,ruby]
|
270
277
|
filter {
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-filter-mutate'
|
4
|
-
s.version = '3.5.
|
4
|
+
s.version = '3.5.3'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Performs mutations on fields"
|
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-filter-mutate
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.3
|
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-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -126,8 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
126
126
|
- !ruby/object:Gem::Version
|
127
127
|
version: '0'
|
128
128
|
requirements: []
|
129
|
-
|
130
|
-
rubygems_version: 2.6.13
|
129
|
+
rubygems_version: 3.1.6
|
131
130
|
signing_key:
|
132
131
|
specification_version: 4
|
133
132
|
summary: Performs mutations on fields
|