logstash-filter-csv
logstash-filter-csv copied to clipboard
**Description:** The failure behavior of the filter is not documented. The documentation should mention that `_csvparsefailure` is added to `tags` upon failure. https://github.com/logstash-plugins/logstash-filter-csv/blob/30b2c232293f9b0e11bdc36938c32b15731de3e8/lib/logstash/filters/csv.rb#L171
Ref: Logstash bug [14821](https://github.com/elastic/logstash/issues/14821) **Logstash information**: ``` $ docker run --rm -p 6996:6996 docker.elastic.co/logstash/logstash:8.5.3 -e '' --version Using bundled JDK: /usr/share/logstash/jdk Sending Logstash logs to /usr/share/logstash/logs which is now configured...
My logstash.conf: input { file { path => ["/root/dx.txt"] start_position => "beginning" codec => csv { **quote_char => nil** } } } All of `quote_char => nil` , `quote_char =>...
Any thoughts on adding Keyword field data type support when converting? [I don't see it currently](https://github.com/logstash-plugins/logstash-filter-csv/blob/master/lib/logstash/filters/csv.rb#L85-L108).
When columns names are the same as keywords unexpected things happen, e.g. when tags is used as a column name the value is added within the logstash tags array. This...
When you dump data from (e.g.) mysql (using "--batch" and "--raw") you get something CSV-like. The issues here are 1. Fields are not quoted 2. Quotes can appear in values...
When spaces are present between quoted entries, trailing or leading the CSV data, parse failure occurs. Seems to happen in all versions of the plugin. ``` input { stdin {}...
https://www.elastic.co/guide/en/logstash/current/plugins-filters-csv.html#plugins-filters-csv-autodetect_column_names - Version: 3.0.10 When using `autodetect_column_names`, if either - logstash is stopped and restarted in the middle of reading a csv file, or - logstash finishes reading a file...
Please post all product and debugging questions on our [forum](https://discuss.elastic.co/c/logstash). Your questions will reach our wider community members there, and if we confirm that there is a bug, then we...
The mutiline codec is successfully tagging lines as multiline, but logstash-csv is only capturing the non-concatenated input. For example, with the message ``` Hi,TestSettings { ex=1; }. ``` The message...