logstash-filter-csv icon indicating copy to clipboard operation
logstash-filter-csv copied to clipboard

Results 37 logstash-filter-csv issues
Sort by recently updated
recently updated
newest added

relates to #48 the current `:date` and `:date_time` converters supported formats is not documented. It relies on the [Ruby CSV Library](http://ruby-doc.org/stdlib-2.0.0/libdoc/csv/rdoc/CSV.html) which says: ``` :date Converts any field Date::parse() accepts....

I have a large csv file that was previously ingested fine with ES v2. logstash v5.2 using this csv filter ignores the csv file and conf file ("attempting to install...

I was playing around with some twitter analytics data and found that the convert in this filter doesn't see to do what is expected. Data sample, altered; ``` "698020519266775043","https://twitter.com/BLAH/status/698020519266775043","LOUD NOISES","2016-02-12...

bug

if you edit the docs you can see this on line 25-28; ``` # Define the column separator value. If this is not specified, the default # is a comma...

bug
docs

Just like we do in grok, it makes sense to allow this with this sort of use; ``` filter { csv { columns => { ["field1", "field2", "field3"], ["fieldA", "fieldB",...

enhancement

I have a Logstash configuration that is working in 1.7 but is now showing errors in 2.2. I get XML streamed via TCP and use the XML filter plugin to...

bug
P2

I am using Logstash to process logs from a CSV file and send them to Elasticsearch. Here is my Logstash configuration: input { file { path => "E:/AuditTrail/AuditTrail0.csv" start_position =>...

bug