logstash-filter-csv
logstash-filter-csv copied to clipboard
Allow multiple column patterns
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", "fieldC"] }
}
}
Here is one example where it would help.