Logstash latest version 6.4 does not show stdout on csv filter

I tried deleting the sincedb.log file as well but still there is no output to stdout. Also there is no error in the trace log. No pointer added to sincedb as well, its empty file. if i copy same pipeline in 6.1.1... it works like a charm.... here is my pipeline.
input{
file{
path=>"C:\TR\d\Professional\ElasticStackSetup\Data\test.csv"
start_position=>"beginning"
sincedb_path=>"C:\TR\d\Professional\ElasticStackSetup\Data\sincedb.log"
}
}filter{
csv{
separator=>","
columns=>["col1","col2","col3","col4"]
}
}output{
stdout{

}

}

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