logstash-plugins / logstash-filter-csv

Apache License 2.0
15 stars 41 forks source link

Logstash-filter-csv and multiline codec do not work together #43

Open nostrebor opened 8 years ago

nostrebor commented 8 years ago

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;}.

markwalkom commented 7 years ago

This may be related to https://github.com/logstash-plugins/logstash-filter-csv/issues/34

blacksudoku commented 3 years ago

I also have same case. Removing the \r from line end solved my problem.

  mutate {
    gsub => [
      "message", "\r$", ""
    ]
  }