Hi,
I am parsing the csv data using logstash to elasticsearch but it parse only 340 lines out of 1500 lines and logstash shows the parsed lines in output but then logstash remain idle and nothing is being displayed and then we have to forcefully exit the logstash.
Please explain why this happens?
Below is the details of filter script used in it.
filter {
csv {
separator => ","
columns => ["Date", "comment_message", "sentiment", "comment_author", "comment_id"]
}
mutate {convert => ["sentiment", "integer"]}
}