logstash-filter-aggregate 2.7.1 → 2.7.2
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 +5 -5
- data/CHANGELOG.md +4 -1
- data/lib/logstash/filters/aggregate.rb +4 -2
- data/logstash-filter-aggregate.gemspec +1 -1
- metadata +4 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: da3a7caa73ead37f402a19b71ebd6793fb438f17
|
|
4
|
+
data.tar.gz: 3e230ab339bb070ad94bf9312866619c65ead910
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bde2b92c6b4f956294b2a8d430e103b4f012022739ddd66a12df17acd23748ba8d68204a1fc99b0d60093e69ce36c1af9fe59e9de6cb4fafd2e7644e43805532
|
|
7
|
+
data.tar.gz: dee95f8441d5459efa28fb07d9e82aeebae150747d30eb1ea1a65bef7a5045e430b0a3e3dbc67d6060988a65fa951d1cf2ac9d16c5fc8580c4704096fdaec2fc
|
data/CHANGELOG.md
CHANGED
|
@@ -299,8 +299,10 @@ class LogStash::Filters::Aggregate < LogStash::Filters::Base
|
|
|
299
299
|
events_to_flush = remove_expired_maps()
|
|
300
300
|
|
|
301
301
|
# at Logstash shutdown, if push_previous_map_as_event is enabled, it's important to force flush (particularly for jdbc input plugin)
|
|
302
|
-
|
|
303
|
-
|
|
302
|
+
@current_pipeline.mutex.synchronize do
|
|
303
|
+
if options[:final] && @push_previous_map_as_event && !@current_pipeline.aggregate_maps[@task_id].empty?
|
|
304
|
+
events_to_flush << extract_previous_map_as_event()
|
|
305
|
+
end
|
|
304
306
|
end
|
|
305
307
|
|
|
306
308
|
# tag flushed events, indicating "final flush" special event
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-filter-aggregate'
|
|
3
|
-
s.version = '2.7.
|
|
3
|
+
s.version = '2.7.2'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = "Aggregates information from several events originating with a single task"
|
|
6
6
|
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,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: logstash-filter-aggregate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.7.
|
|
4
|
+
version: 2.7.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2017-11-
|
|
12
|
+
date: 2017-11-16 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -45,9 +45,7 @@ dependencies:
|
|
|
45
45
|
- - ">="
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
47
|
version: '0'
|
|
48
|
-
description: This gem is a Logstash plugin required to be installed on top of the
|
|
49
|
-
Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
|
|
50
|
-
gem is not a stand-alone program
|
|
48
|
+
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
|
|
51
49
|
email: info@elastic.co
|
|
52
50
|
executables: []
|
|
53
51
|
extensions: []
|
|
@@ -87,7 +85,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
87
85
|
version: '0'
|
|
88
86
|
requirements: []
|
|
89
87
|
rubyforge_project:
|
|
90
|
-
rubygems_version: 2.
|
|
88
|
+
rubygems_version: 2.4.8
|
|
91
89
|
signing_key:
|
|
92
90
|
specification_version: 4
|
|
93
91
|
summary: Aggregates information from several events originating with a single task
|