logstash-filter-grok 3.4.1 → 3.4.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 +4 -4
- data/Gemfile +8 -1
- data/docs/index.asciidoc +6 -5
- data/lib/logstash/filters/grok.rb +1 -1
- data/logstash-filter-grok.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: 07ca978b604c9dfa10b8f0d102ded3122a5bb4c4
|
|
4
|
+
data.tar.gz: eb21d41b0e2fa77dfdf194bb49ba8e292be5143a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 218ac8f47ae1706e9ebb1ac4e8bafec6f2fe2efa5dfc2e7ed93e9320f3f0d1c0159f2eb8ce426224a3fc48352e6342098f777cbc4773fe6f0e8ae235e7029915
|
|
7
|
+
data.tar.gz: 67d97dce2732a1de1ce440adb162c16cf0ab021b0bf7512a3fcec16b49c612dbd0e652163c6074339e4daea99660e96c106714f7e2311f850f356ba7b84e2042
|
data/Gemfile
CHANGED
|
@@ -1,4 +1,11 @@
|
|
|
1
1
|
source 'https://rubygems.org'
|
|
2
2
|
|
|
3
|
-
# Specify your gem's dependencies in logstash-mass_effect.gemspec
|
|
4
3
|
gemspec
|
|
4
|
+
|
|
5
|
+
logstash_path = ENV["LOGSTASH_PATH"] || "../../logstash"
|
|
6
|
+
use_logstash_source = ENV["LOGSTASH_SOURCE"] && ENV["LOGSTASH_SOURCE"].to_s == "1"
|
|
7
|
+
|
|
8
|
+
if Dir.exist?(logstash_path) && use_logstash_source
|
|
9
|
+
gem 'logstash-core', :path => "#{logstash_path}/logstash-core"
|
|
10
|
+
gem 'logstash-core-plugin-api', :path => "#{logstash_path}/logstash-core-plugin-api"
|
|
11
|
+
end
|
data/docs/index.asciidoc
CHANGED
|
@@ -7,14 +7,14 @@ START - GENERATED VARIABLES, DO NOT EDIT!
|
|
|
7
7
|
:version: %VERSION%
|
|
8
8
|
:release_date: %RELEASE_DATE%
|
|
9
9
|
:changelog_url: %CHANGELOG_URL%
|
|
10
|
-
:include_path:
|
|
10
|
+
:include_path: ../../../../logstash/docs/include
|
|
11
11
|
///////////////////////////////////////////
|
|
12
12
|
END - GENERATED VARIABLES, DO NOT EDIT!
|
|
13
13
|
///////////////////////////////////////////
|
|
14
14
|
|
|
15
15
|
[id="plugins-{type}-{plugin}"]
|
|
16
16
|
|
|
17
|
-
=== Grok
|
|
17
|
+
=== Grok filter plugin
|
|
18
18
|
|
|
19
19
|
include::{include_path}/plugin_header.asciidoc[]
|
|
20
20
|
|
|
@@ -160,7 +160,7 @@ filter. This newly defined patterns in `pattern_definitions` will not be availab
|
|
|
160
160
|
[id="plugins-{type}s-{plugin}-options"]
|
|
161
161
|
==== Grok Filter Configuration Options
|
|
162
162
|
|
|
163
|
-
This plugin supports the following configuration options plus the <<plugins-{type}s-common-options>> described later.
|
|
163
|
+
This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
|
|
164
164
|
|
|
165
165
|
[cols="<,<,<",options="header",]
|
|
166
166
|
|=======================================================================
|
|
@@ -178,7 +178,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
|
178
178
|
| <<plugins-{type}s-{plugin}-timeout_millis>> |<<number,number>>|No
|
|
179
179
|
|=======================================================================
|
|
180
180
|
|
|
181
|
-
Also see <<plugins-{type}s-common-options>> for a list of options supported by all
|
|
181
|
+
Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
|
|
182
182
|
filter plugins.
|
|
183
183
|
|
|
184
184
|
|
|
@@ -329,4 +329,5 @@ Set to 0 to disable timeouts
|
|
|
329
329
|
|
|
330
330
|
|
|
331
331
|
|
|
332
|
-
|
|
332
|
+
[id="plugins-{type}s-{plugin}-common-options"]
|
|
333
|
+
include::{include_path}/{type}.asciidoc[]
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
|
|
8
8
|
# Parse arbitrary text and structure it.
|
|
9
9
|
#
|
|
10
|
-
# Grok is currently the best way in
|
|
10
|
+
# Grok is currently the best way in Logstash to parse unstructured log
|
|
11
11
|
# data into something structured and queryable.
|
|
12
12
|
#
|
|
13
13
|
# This tool is perfect for syslog logs, apache and other webserver logs, mysql
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-filter-grok'
|
|
4
|
-
s.version = '3.4.
|
|
4
|
+
s.version = '3.4.2'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Parse arbitrary text and structure it."
|
|
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-filter-grok
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.4.
|
|
4
|
+
version: 3.4.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-06-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|