logstash-filter-aggregate 2.6.1 → 2.6.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/CHANGELOG.md +9 -0
- data/docs/index.asciidoc +3 -14
- data/logstash-filter-aggregate.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aa6b23a1b94834464efa84ac45aee913ec266a5e
|
|
4
|
+
data.tar.gz: 0410fb7378db5e96b6334e6348a42a092810527d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c7606253c30c0b13f26dbfc938180cb02b318a735ff3c0286eef0e7b0b782219a3abf3f200be20739ba038d84264fbcd94a33ab3024d557f220c5a34802b745
|
|
7
|
+
data.tar.gz: 7b05448e759a64ca53f6fe1b0eb37c908009cd094ac8bafcc897da289e735cf1bbe3e1a4c81b6459ebcbf8b9114194b77e20856f432c776af1f40026c38e5ded
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 2.6.3
|
|
2
|
+
- Fix some documentation issues
|
|
3
|
+
|
|
4
|
+
## 2.6.2
|
|
5
|
+
- Docs: Remove incorrectly coded, redundant links
|
|
6
|
+
|
|
7
|
+
## 2.6.1
|
|
8
|
+
- Docs: Bump patch level for doc build
|
|
9
|
+
|
|
1
10
|
## 2.6.0
|
|
2
11
|
- new feature: 'inactivity_timeout'. Events for a given `task_id` will be aggregated for as long as they keep arriving within the defined `inactivity_timeout` option - the inactivity timeout is reset each time a new event happens. On the contrary, `timeout` is never reset and happens after `timeout` seconds since aggregation map creation.
|
|
3
12
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -12,24 +12,13 @@ START - GENERATED VARIABLES, DO NOT EDIT!
|
|
|
12
12
|
END - GENERATED VARIABLES, DO NOT EDIT!
|
|
13
13
|
///////////////////////////////////////////
|
|
14
14
|
|
|
15
|
-
[id="plugins-{type}-{plugin}"]
|
|
15
|
+
[id="plugins-{type}s-{plugin}"]
|
|
16
16
|
|
|
17
17
|
=== Aggregate filter plugin
|
|
18
18
|
|
|
19
19
|
include::{include_path}/plugin_header.asciidoc[]
|
|
20
20
|
|
|
21
21
|
|
|
22
|
-
<<plugins-{type}s-{plugin}-description>> +
|
|
23
|
-
<<plugins-{type}s-{plugin}-example1>> +
|
|
24
|
-
<<plugins-{type}s-{plugin}-example2>> +
|
|
25
|
-
<<plugins-{type}s-{plugin}-example3>> +
|
|
26
|
-
<<plugins-{type}s-{plugin}-example4>> +
|
|
27
|
-
<<plugins-{type}s-{plugin}-example5>> +
|
|
28
|
-
<<plugins-{type}s-{plugin}-howitworks>> +
|
|
29
|
-
<<plugins-{type}s-{plugin}-usecases>> +
|
|
30
|
-
<<plugins-{type}s-{plugin}-options>> +
|
|
31
|
-
|
|
32
|
-
|
|
33
22
|
[id="plugins-{type}s-{plugin}-description"]
|
|
34
23
|
==== Description
|
|
35
24
|
|
|
@@ -319,7 +308,7 @@ filter {
|
|
|
319
308
|
[id="plugins-{type}s-{plugin}-howitworks"]
|
|
320
309
|
==== How it works
|
|
321
310
|
* the filter needs a "task_id" to correlate events (log lines) of a same task
|
|
322
|
-
* at the task
|
|
311
|
+
* at the task beginning, filter creates a map, attached to task_id
|
|
323
312
|
* for each event, you can execute code using 'event' and 'map' (for instance, copy an event field to map)
|
|
324
313
|
* in the final event, you can execute a last code (for instance, add map data to final event)
|
|
325
314
|
* after the final event, the map attached to task is deleted (thanks to `end_of_task => true`)
|
|
@@ -550,4 +539,4 @@ By default, if this option is not set, task id value won't be set into timeout g
|
|
|
550
539
|
|
|
551
540
|
|
|
552
541
|
[id="plugins-{type}s-{plugin}-common-options"]
|
|
553
|
-
include::{include_path}/{type}.asciidoc[]
|
|
542
|
+
include::{include_path}/{type}.asciidoc[]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-filter-aggregate'
|
|
3
|
-
s.version = '2.6.
|
|
3
|
+
s.version = '2.6.3'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = 'The aim of this filter is to aggregate information available among several events (typically log lines) belonging to a same task, and finally push aggregated information into final task event.'
|
|
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.6.
|
|
4
|
+
version: 2.6.3
|
|
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-
|
|
12
|
+
date: 2017-08-15 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|