Hey Guys,
I have a CSV file that looks like the attached image.
I want to send this csv file to logstash.
The configuration is working well except that the whole file is being sent as a single message. filebeat is not splitting the lines.
I saw the multiline option in the docs. But I'm not sure on what to use for my file.
What would you recommend? should i match LF (end of line char? ) or how can I proceed?
Here's the configuration now:
filebeat.prospectors:
- type: log
enabled: true
paths:
- /var/capture/test/*.csv
tags: ["iclick-tcplog"]
multiline.pattern: ',\d+,[^\",]+$'
multiline.negate: true
multiline.match: before