logstash-filter-kv 4.3.0 → 4.3.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 +1 -1
- data/logstash-filter-kv.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: 9cb63418024cd83a07e3a1e9d0db30b8b8274abd7f35c510f0c201a23cc4186f
|
|
4
|
+
data.tar.gz: 5714cdc93d81b6fb667700b3d1667426031d3df240894bea5275a031739449ef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7973b8e55a4ad5c215da44a1b1ae487c19ad4ec6ba8e47425f61f4667fb73e463100d8a5357e8ca7e4f294265554052e5c2c3ff21f6c497dacbe0bfeaa64d008
|
|
7
|
+
data.tar.gz: '0956a1d87055c01ebf6aebfa0b2dcf4aa27b680d110192404b0d92db4dbfcb1a5f40cb259dbca820b22e3a3acc9d5dc14f6ffcce4d37d94b5925594bbac76ad2'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 4.3.1
|
|
2
|
+
- Fixed asciidoc formatting in documentation [#81](https://github.com/logstash-plugins/logstash-filter-kv/pull/81)
|
|
3
|
+
|
|
1
4
|
## 4.3.0
|
|
2
5
|
- Added a timeout enforcer which prevents inputs that are pathological against the generated parser from blocking
|
|
3
6
|
the pipeline. By default, timeout is a generous 30s, but can be configured or disabled entirely with the new
|
data/docs/index.asciidoc
CHANGED
|
@@ -146,7 +146,7 @@ A string of characters to use as single-character field delimiters for parsing o
|
|
|
146
146
|
These characters form a regex character class and thus you must escape special regex
|
|
147
147
|
characters like `[` or `]` using `\`.
|
|
148
148
|
|
|
149
|
-
|
|
149
|
+
*Example with URL Query Strings*
|
|
150
150
|
|
|
151
151
|
For example, to split out the args from a url query string such as
|
|
152
152
|
`?pin=12345~0&d=123&e=foo@bar.com&oq=bobo&ss=12345`:
|
data/logstash-filter-kv.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-filter-kv'
|
|
4
|
-
s.version = '4.3.
|
|
4
|
+
s.version = '4.3.1'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Parses key-value pairs"
|
|
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-kv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.
|
|
4
|
+
version: 4.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-04-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|