logstash-filter-record_split 0.1.2 → 0.1.3
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/lib/logstash/filters/record_split.rb +3 -2
- data/logstash-filter-record_split.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a33989c4e3405b6f055c897df10986997a14539777d4fe591c0301b388165c18
|
|
4
|
+
data.tar.gz: 0c43daf436ae6cd98339a1b1d6977b7bf70a9f0e1d9eff616ae22f3a0e64f1d9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 402b657239d9210f0b0e034c25ff7b7da61f622512d8bda48463819231b7317d09ba15a10ebaca5aa58a8b0abdc95d1afdc56ba28fdb3a2501ab377cc0c6791f
|
|
7
|
+
data.tar.gz: db604d82235a8aeb865502509a76b772e08c8fe7489019f2dd0f7fcec3d70b82d1a874690632dc296ad010cbdf0d6e2de80c6cb608973641fee86fbdba0011a5
|
|
@@ -64,8 +64,9 @@ class LogStash::Filters::RecordSplit < LogStash::Filters::Base
|
|
|
64
64
|
begin
|
|
65
65
|
event_split = LogStash::Event.new(value)
|
|
66
66
|
filter_matched(event_split)
|
|
67
|
-
rescue
|
|
68
|
-
puts
|
|
67
|
+
rescue => e
|
|
68
|
+
puts original_value
|
|
69
|
+
puts e
|
|
69
70
|
end
|
|
70
71
|
# Push this new event onto the stack at the LogStash::FilterWorker
|
|
71
72
|
yield event_split
|