I want to input per one row and csv file haven't column name.
Please teach me how to set for logstash.
Data flow is filebeat → logstash → elasticsearch.
I attached sample image of csv file.
I want to input per one row and csv file haven't column name.
Please teach me how to set for logstash.
Data flow is filebeat → logstash → elasticsearch.
I attached sample image of csv file.
The current versions of filebeat can parse csv natively without the requirement for logstash, Decode CSV fields | Filebeat Reference [7.12] | Elastic. but if u want to do it with logstash, Csv filter plugin | Logstash Reference [7.12] | Elastic
You can use CSV filter in logstash. PFB required syntax. Just change column name as per your requirements.
csv {
separator => ","
columns => ["Last_Check","Host","Service","Status","Attempt","state_type", "info" ,"info_extra", "status_information" ,"status_information_details"]
}
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant logo are trademarks of the Apache Software Foundation in the United States and/or other countries.