logstash-filter-csv 3.0.3 → 3.0.4
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/logstash-filter-csv.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: e9975cc4ea26ea06e7cd9faf725c1559348662d2
|
|
4
|
+
data.tar.gz: 1ebb3894e769febe4f48aa0a1583bba8dc5c13f2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd3046e1ead39a1ad532a5ffb51e7f5da2b3a01bea5f8d339bd8da01bcfaa060bbc61f9fe4933e2aa754db9689d2e66a934e2c2c2ad884370bacfc5a95e736f3
|
|
7
|
+
data.tar.gz: 2b00766018f3b5c3a296bd8c9d2f39d1fd31efe90d48e32ae3d2251788fa5f85c033d1632f12a16891602a7426e3e0984437d920103406e6e773d25af3de68ba
|
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
|
-
=== Csv
|
|
17
|
+
=== Csv filter plugin
|
|
18
18
|
|
|
19
19
|
include::{include_path}/plugin_header.asciidoc[]
|
|
20
20
|
|
|
@@ -27,7 +27,7 @@ This filter can also parse data with any separator, not just commas.
|
|
|
27
27
|
[id="plugins-{type}s-{plugin}-options"]
|
|
28
28
|
==== Csv Filter Configuration Options
|
|
29
29
|
|
|
30
|
-
This plugin supports the following configuration options plus the <<plugins-{type}s-common-options>> described later.
|
|
30
|
+
This plugin supports the following configuration options plus the <<plugins-{type}s-{plugin}-common-options>> described later.
|
|
31
31
|
|
|
32
32
|
[cols="<,<,<",options="header",]
|
|
33
33
|
|=======================================================================
|
|
@@ -43,7 +43,7 @@ This plugin supports the following configuration options plus the <<plugins-{typ
|
|
|
43
43
|
| <<plugins-{type}s-{plugin}-target>> |<<string,string>>|No
|
|
44
44
|
|=======================================================================
|
|
45
45
|
|
|
46
|
-
Also see <<plugins-{type}s-common-options>> for a list of options supported by all
|
|
46
|
+
Also see <<plugins-{type}s-{plugin}-common-options>> for a list of options supported by all
|
|
47
47
|
filter plugins.
|
|
48
48
|
|
|
49
49
|
|
|
@@ -149,4 +149,5 @@ Defaults to writing to the root of the event.
|
|
|
149
149
|
|
|
150
150
|
|
|
151
151
|
|
|
152
|
-
|
|
152
|
+
[id="plugins-{type}s-{plugin}-common-options"]
|
|
153
|
+
include::{include_path}/{type}.asciidoc[]
|
data/logstash-filter-csv.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-filter-csv'
|
|
4
|
-
s.version = '3.0.
|
|
4
|
+
s.version = '3.0.4'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "The CSV filter takes an event field containing CSV data, parses it, and stores it as individual fields (can optionally specify the names)."
|
|
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-csv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.4
|
|
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
|