Hi
See my logstash input config -
#input {
file {
path => "/data/logs/*"
mode => "read"
file_completed_action => "log"
file_completed_log_path => "/data/logstash-db/17_file_completed_log"
}
}
I placed 4389 files in /data/logs/
When doing cat /data/logstash-db/17_file_completed.log | wc -l
it is saying 3211, so it is missing/ignoring 1178 of the files.
How do i determine why it is decided to completely ignore these files?
I also get different results each time, if i delete the index/clear the sincedb ect and re-copy them, sometimes it will do all of them, sometimes less.