logstash-filter-csv
logstash-filter-csv copied to clipboard
Logstash-filter-csv and multiline codec do not work together
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 would resolve to Hi,TestSettings { rather than Hi,TestSettings{ ex=1;}.
This may be related to https://github.com/logstash-plugins/logstash-filter-csv/issues/34
I also have same case. Removing the \r from line end solved my problem.
mutate {
gsub => [
"message", "\r$", ""
]
}