Ingested CSV Data into logstasth but not showing in kibana

Dear team,

I ingested CSV data path to logstash .conf file but it is not showing in kibana Dashboard .below is my .conf code .

input {

file {
path=>"C:\Users\Downloads\Flow_data.csv"

start_position=>"beginning"
sincedb_path => "C:\Users\Downloads\abc.txt"
}

}
filter{

}

output{
elasticsearch{
hosts=>["localhost:9200"]
index=>"Energy"
}
stdout{codec=> rubydebug }
}

Kindly help me out why it is bot showing

Do not use backslash in the path option of a file input, use forward slash.

Super !
Got it @Badger Thanks for the support.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.