logstash-filter-csv 3.0.8 → 3.0.10

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 77c9af10a455ef4116b2abb9d75a9a56cc2ccbdec5e5e99ee9ac629e60f9e43a
4
- data.tar.gz: fbb3fef988e0e0871cf97eaf30ff72cd1f53f81ce7a266ab769a4377c6614cae
3
+ metadata.gz: fda0b58c576a11c9477b4f45f323f560081e02e120b118d2aaadba549b13af86
4
+ data.tar.gz: 9f0fc5b0a0f53d3efbfb0def7fb4241b2886ff96921861bed6e7ee6b54c2000e
5
5
  SHA512:
6
- metadata.gz: 11514496263cd97eed74e1cac97b3f8beec06ad52eea1539d10a989b7c14a1436ec2b2421baaa6d5bc3461bb745231c606bdb76f21d24728e0685c9d556f7491
7
- data.tar.gz: a4a92a82de66f3f55b6782dd04265d4dd13ffb2d1014c41c553ef7faea9eb8b240f8a47a3b3830489adbb7f39d67fa99f3966873de5e30589572691e7d410f2d
6
+ metadata.gz: c7e952a2cd20331f91d775296515c6e63af719669e95af6704a50b0b92d94f6227f96466b8365818cec25855fab9c9c710720ee2f3250c01f747f0f7070d44f6
7
+ data.tar.gz: 0b45c7ef78977db956e38b8034445711bdb2a352f439980b841ae7f4a9bdc8788d42e2537ac7baddc6e38fd07c0c8ceded63abc6290c1555fcf3a38c4ced60e6
@@ -1,3 +1,10 @@
1
+ ## 3.0.10
2
+ - Fix asciidoc formatting for example [#73](https://github.com/logstash-plugins/logstash-filter-csv/pull/73)
3
+
4
+ ## 3.0.9
5
+ - Document that the `autodetect_column_names` and `skip_header` options work only when the number of Logstash
6
+ pipeline workers is set to `1`.
7
+
1
8
  ## 3.0.8
2
9
  - feature: Added support for tagging empty rows which users can reference to conditionally drop events
3
10
 
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 3.0.10
@@ -21,8 +21,8 @@ include::{include_path}/plugin_header.asciidoc[]
21
21
  ==== Description
22
22
 
23
23
  The CSV filter takes an event field containing CSV data, parses it,
24
- and stores it as individual fields (can optionally specify the names).
25
- This filter can also parse data with any separator, not just commas.
24
+ and stores it as individual fields with optionally-specified field names.
25
+ This filter can parse data with any separator, not just commas.
26
26
 
27
27
  [id="plugins-{type}s-{plugin}-options"]
28
28
  ==== Csv Filter Configuration Options
@@ -59,6 +59,8 @@ filter plugins.
59
59
  Define whether column names should be auto-detected from the header column or not.
60
60
  Defaults to false.
61
61
 
62
+ Logstash pipeline workers must be set to `1` for this option to work.
63
+
62
64
  [id="plugins-{type}s-{plugin}-autogenerate_column_names"]
63
65
  ===== `autogenerate_column_names`
64
66
 
@@ -90,7 +92,8 @@ in the data than specified in this column list, extra columns will be auto-numbe
90
92
  Define a set of datatype conversions to be applied to columns.
91
93
  Possible conversions are integer, float, date, date_time, boolean
92
94
 
93
- # Example:
95
+ Example:
96
+
94
97
  [source,ruby]
95
98
  filter {
96
99
  csv {
@@ -156,6 +159,8 @@ If skip_header and autodetect_column_names are specified then columns should not
156
159
  autodetect_column_names will fill the columns setting in the background, from the first event seen, and any
157
160
  subsequent values that match what was autodetected will be skipped.
158
161
 
162
+ Logstash pipeline workers must be set to `1` for this option to work.
163
+
159
164
  [id="plugins-{type}s-{plugin}-source"]
160
165
  ===== `source`
161
166
 
@@ -1,7 +1,9 @@
1
+ CSV_VERSION = File.read(File.expand_path(File.join(File.dirname(__FILE__), "VERSION"))).strip unless defined?(CSV_VERSION)
2
+
1
3
  Gem::Specification.new do |s|
2
4
 
3
5
  s.name = 'logstash-filter-csv'
4
- s.version = '3.0.8'
6
+ s.version = CSV_VERSION
5
7
  s.licenses = ['Apache License (2.0)']
6
8
  s.summary = "Parses comma-separated value data into individual fields"
7
9
  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.8
4
+ version: 3.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-01-12 00:00:00.000000000 Z
11
+ date: 2019-04-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -58,6 +58,7 @@ files:
58
58
  - LICENSE
59
59
  - NOTICE.TXT
60
60
  - README.md
61
+ - VERSION
61
62
  - docs/index.asciidoc
62
63
  - lib/logstash/filters/csv.rb
63
64
  - logstash-filter-csv.gemspec