You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please post all product and debugging questions on our forum. Your questions will reach our wider community members there, and if we confirm that there is a bug, then we can open a new issue here.
For all general issues, please provide the following details for fast resolution:
Version: logstash 7.3.0
Operating System: Windows
csv rfc says that a value can contain multiple lines, broken by CRLF as long as the value is enclosed into double quotes:
6. Fields containing line breaks (CRLF), double quotes, and commas
should be enclosed in double-quotes. For example:
"aaa","b CRLF
bb","ccc" CRLF
zzz,yyy,xxx
We have multiline fields stored in elasticsearch like stacktraces.
I exported them in discovery via csv export. Then I tried to import them via logstash to another elasticsearch instance.
CSV filter is throwing exception that a quote is missing, because it does not find it on the next new line.
Please post all product and debugging questions on our forum. Your questions will reach our wider community members there, and if we confirm that there is a bug, then we can open a new issue here.
For all general issues, please provide the following details for fast resolution:
csv rfc says that a value can contain multiple lines, broken by CRLF as long as the value is enclosed into double quotes:
https://tools.ietf.org/html/rfc4180
We have multiline fields stored in elasticsearch like stacktraces.
I exported them in discovery via csv export. Then I tried to import them via logstash to another elasticsearch instance.
CSV filter is throwing exception that a quote is missing, because it does not find it on the next new line.
Here are my filters:
I found the workaround with mutate's gsub to replace newlines with \n. But I would declare it as a bug which should be solved.
The text was updated successfully, but these errors were encountered: