logstash-filter-dissect 1.1.2 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/LICENSE +1 -1
- data/VERSION +1 -1
- data/docs/index.asciidoc +8 -1
- data/lib/jruby-dissect-library_jars.rb +1 -1
- data/vendor/jars/org/logstash/dissect/jruby-dissect-library/{1.1.2/jruby-dissect-library-1.1.2.jar → 1.1.4/jruby-dissect-library-1.1.4.jar} +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 21b60b83ce9a628a4c1879f0cffa16b3266595a5858fa5874998d3ca971718a6
|
4
|
+
data.tar.gz: e6b49de027860dcd0f6316ff93632aa8dd33f2bc9323258babfdbe867ea23bb3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee8590d5715087e826fe63853919972602161ddeddb6055a3585aef0dc6c2a9ce5ca6c1bcdc575703fb145abf41381ec1e460b5fa2c224fea16b0325555c7c47
|
7
|
+
data.tar.gz: 562fc016a5fe3e6312ecc1949a53764ebff4ae0a67cdfee903ca4c0f021ecdecd90fcedb690aba3acb35edb00ebf81960236315d383f33c12ef70a5b146deaaf
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,12 @@
|
|
1
|
+
## 1.1.4
|
2
|
+
- Replace v1.1.3 as it packaged the v1.1.1 jar and therefore does not have the fixes below
|
3
|
+
- Yank v1.1.3 from rubygems.org
|
4
|
+
|
5
|
+
## 1.1.3
|
6
|
+
- Test for "Improve field regular expression accuracy to include prefix and suffix options", fixed in 1.1.1
|
7
|
+
- Fix for "Dissector mapping, field found in event but it was empty" caused by multibyte UTF8, bytes size vs string size
|
8
|
+
- Fix for "Bug: if a dissection is defined with a newline as part of a delimiter it is ignored."
|
9
|
+
|
1
10
|
## 1.1.2
|
2
11
|
- Update gemspec summary
|
3
12
|
|
data/LICENSE
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.1.
|
1
|
+
1.1.4
|
data/docs/index.asciidoc
CHANGED
@@ -253,6 +253,11 @@ filter {
|
|
253
253
|
* Default value is `{}`
|
254
254
|
|
255
255
|
A hash of dissections of `field => value` +
|
256
|
+
[IMPORTANT]
|
257
|
+
Don't use an escaped newline `\n` in the value, it will be seen as two characters `\` + `n`+
|
258
|
+
Instead use actual line breaks in the config.+
|
259
|
+
Also use single quotes to define the value if it contains double quotes.
|
260
|
+
|
256
261
|
A later dissection can be done on values from a previous dissection or they can be independent.
|
257
262
|
|
258
263
|
For example
|
@@ -260,7 +265,9 @@ For example
|
|
260
265
|
filter {
|
261
266
|
dissect {
|
262
267
|
mapping => {
|
263
|
-
|
268
|
+
# using an actual line break
|
269
|
+
"message" => '"%{field1}" "%{field2}"
|
270
|
+
"%{description}"'
|
264
271
|
"description" => "%{field3} %{field4} %{field5}"
|
265
272
|
}
|
266
273
|
}
|
Binary file
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-filter-dissect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -95,7 +95,7 @@ files:
|
|
95
95
|
- logstash-filter-dissect.gemspec
|
96
96
|
- spec/filters/dissect_spec.rb
|
97
97
|
- spec/spec_helper.rb
|
98
|
-
- vendor/jars/org/logstash/dissect/jruby-dissect-library/1.1.
|
98
|
+
- vendor/jars/org/logstash/dissect/jruby-dissect-library/1.1.4/jruby-dissect-library-1.1.4.jar
|
99
99
|
homepage: http://www.elastic.co/guide/en/logstash/current/index.html
|
100
100
|
licenses:
|
101
101
|
- Apache License (2.0)
|
@@ -119,7 +119,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
119
119
|
version: '0'
|
120
120
|
requirements: []
|
121
121
|
rubyforge_project:
|
122
|
-
rubygems_version: 2.6.
|
122
|
+
rubygems_version: 2.6.13
|
123
123
|
signing_key:
|
124
124
|
specification_version: 4
|
125
125
|
summary: Extracts unstructured event data into fields using delimiters
|