logstash-codec-multiline 3.0.9 → 3.0.10
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 +1 -1
- data/lib/logstash/codecs/identity_map_codec.rb +2 -1
- data/logstash-codec-multiline.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: cb35d43947be73cfe1da71675564f567c72864988e1fb508f60ac438f455fe5b
|
4
|
+
data.tar.gz: 9e85086cf790c802f2a8b4fab7f1094fae5da1058a59ff1f757fb0f640adf64d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cdca21464b4861c9d6b060a4508b112d738453c5fdd6fec6082f99f90d2a296e4faa95fcfcb64011895b6f83396a72dde890e37a7f6e4073e814e7b718a8bca
|
7
|
+
data.tar.gz: 2d798deb91fded2087340341e0e3c44baa342908a45cdbaec71869c33bd5eaade465602e11e344e3cee3c38ef3445b9cc781cb3bad5cce90ab66d9315a61afbd
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
## 3.0.10
|
2
|
+
- Fixed [multiline codec - #32](https://github.com/logstash-plugins/logstash-codec-multiline/issues/32) `no method map_cleanup for nil class` error when shutting down.
|
3
|
+
|
1
4
|
## 3.0.9
|
2
5
|
- Fixed concurrency issue causing random failures when multiline codec was used together with a multi-threaded input plugin
|
3
6
|
|
data/docs/index.asciidoc
CHANGED
@@ -24,7 +24,7 @@ The multiline codec will collapse multiline messages and merge them into a
|
|
24
24
|
single event.
|
25
25
|
|
26
26
|
IMPORTANT: If you are using a Logstash input plugin that supports multiple
|
27
|
-
hosts, such as the
|
27
|
+
hosts, such as the {logstash-ref}/plugins-inputs-beats.html[beats input plugin], you should not use
|
28
28
|
the multiline codec to handle multiline events. Doing so may result in the
|
29
29
|
mixing of streams and corrupted event data. In this situation, you need to
|
30
30
|
handle multiline events before sending the event data to Logstash.
|
@@ -52,6 +52,7 @@ module LogStash module Codecs class IdentityMapCodec
|
|
52
52
|
while running? do
|
53
53
|
sleep @interval
|
54
54
|
break if !running?
|
55
|
+
break if @listener.nil?
|
55
56
|
@listener.send(@method_symbol)
|
56
57
|
end
|
57
58
|
end
|
@@ -59,7 +60,7 @@ module LogStash module Codecs class IdentityMapCodec
|
|
59
60
|
end
|
60
61
|
|
61
62
|
def running?
|
62
|
-
@running.
|
63
|
+
@running.true?
|
63
64
|
end
|
64
65
|
|
65
66
|
def stop
|
@@ -1,7 +1,7 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
|
3
3
|
s.name = 'logstash-codec-multiline'
|
4
|
-
s.version = '3.0.
|
4
|
+
s.version = '3.0.10'
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
6
6
|
s.summary = "Merges multiline messages into a single event"
|
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-codec-multiline
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-06-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|