logstash-output-csv 3.0.7 → 3.0.8
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 +4 -0
- data/docs/index.asciidoc +7 -2
- data/logstash-output-csv.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2be99344dcb2750c5f9ac9741570fd33b00255d3248fe844e144ab2dea1a34b3
|
|
4
|
+
data.tar.gz: 5ee0b8b6e6cacf07cc46d4eb687a42ddbd412eeeeab6179007c7204880f648a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 30bae267075535c2a86fbcc29a9505d1b2c0e2bafa348a7e081d5d03d6f7aa2c74f193c0ca40820ca12bd54bb29cc7d51c3057165dd00b0f8227c6abd269c4fb
|
|
7
|
+
data.tar.gz: c36a8cfaa11c362960b598730835abaa04dd47926ef2fd01f2a045a2a98c2dc1fddd6156c32157b18e343344fbbe72af9bbec903073bedf7df1e6fed3cd00b59
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 3.0.8
|
|
2
|
+
- Docs: Correct typos [#19](https://github.com/logstash-plugins/logstash-output-csv/pull/19)
|
|
3
|
+
- Docs: Fix formatting after code sample [#22](https://github.com/logstash-plugins/logstash-output-csv/pull/22)
|
|
4
|
+
|
|
1
5
|
## 3.0.7
|
|
2
6
|
- Docs: Set the default_codec doc attribute.
|
|
3
7
|
|
data/docs/index.asciidoc
CHANGED
|
@@ -69,7 +69,7 @@ the plugin will recreate the file. Default => true
|
|
|
69
69
|
|
|
70
70
|
Options for CSV output. This is passed directly to the Ruby stdlib to_csv function.
|
|
71
71
|
Full documentation is available on the http://ruby-doc.org/stdlib-2.0.0/libdoc/csv/rdoc/index.html[Ruby CSV documentation page].
|
|
72
|
-
A typical use case would be to use alternative column or row
|
|
72
|
+
A typical use case would be to use alternative column or row separators eg: `csv_options => {"col_sep" => "\t" "row_sep" => "\r\n"}` gives tab separated data with windows line endings
|
|
73
73
|
|
|
74
74
|
[id="plugins-{type}s-{plugin}-dir_mode"]
|
|
75
75
|
===== `dir_mode`
|
|
@@ -142,14 +142,18 @@ This output writes events to files on disk. You can use fields
|
|
|
142
142
|
from the event as parts of the filename and/or path.
|
|
143
143
|
|
|
144
144
|
By default, this output writes one event per line in **json** format.
|
|
145
|
-
You can customise the line format using the `line` codec like
|
|
145
|
+
You can customise the line format using the `line` codec like:
|
|
146
|
+
|
|
146
147
|
[source,ruby]
|
|
148
|
+
-----
|
|
147
149
|
output {
|
|
148
150
|
file {
|
|
149
151
|
path => ...
|
|
150
152
|
codec => line { format => "custom format: %{message}"}
|
|
151
153
|
}
|
|
152
154
|
}
|
|
155
|
+
-----
|
|
156
|
+
|
|
153
157
|
The path to the file to write. Event fields can be used here,
|
|
154
158
|
like `/var/log/logstash/%{host}/%{application}`
|
|
155
159
|
One may also utilize the path option for date-based log
|
|
@@ -175,4 +179,5 @@ may not make the values safe in your spreadsheet application
|
|
|
175
179
|
[id="plugins-{type}s-{plugin}-common-options"]
|
|
176
180
|
include::{include_path}/{type}.asciidoc[]
|
|
177
181
|
|
|
182
|
+
|
|
178
183
|
:default_codec!:
|
data/logstash-output-csv.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
|
|
3
3
|
s.name = 'logstash-output-csv'
|
|
4
|
-
s.version = '3.0.
|
|
4
|
+
s.version = '3.0.8'
|
|
5
5
|
s.licenses = ['Apache License (2.0)']
|
|
6
6
|
s.summary = "Writes events to disk in a delimited format"
|
|
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-output-csv
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elastic
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-01-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -126,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
126
126
|
version: '0'
|
|
127
127
|
requirements: []
|
|
128
128
|
rubyforge_project:
|
|
129
|
-
rubygems_version: 2.6.
|
|
129
|
+
rubygems_version: 2.6.13
|
|
130
130
|
signing_key:
|
|
131
131
|
specification_version: 4
|
|
132
132
|
summary: Writes events to disk in a delimited format
|