Hi experts,
I'm struggling with Logstash since the 7.3 release version.
Here my logstash configuration file :
input {
file {
path => ["C:\samples\sample.csv"]
start_position => "beginning"
sincedb_path => "NUL"
}
}
output {
elasticsearch {
hosts => ["localhost:9200"]
index => "sample_index"
}
}
If I try to launch this with Logstash 6.0 (to index data into an Elasticsearch 7.3), everything works well : my index is created and the data is inserted.
Meanwhile, if I try to use the configuration file with Logstash > 6 (7.3 or 7.4), nothing happens : I have no error message...
Could you please help me? I think I'm missing something
Best regards,