Hi!
I am running Logstash in Windows and, in my input I have the following lines:
file {
path => "E:/logs/firewall/*/*firewall.txt"
start_position => "beginning"
sincedb_path => "E:/logs/firewall/firewall_sincedb_path"
ignore_older => 90000
}
I am getting these errors in the logstash log:
[2018-03-19T00:00:54,941][ERROR][logstash.inputs.file ] each: ignored?: E:/logs/firewall/2017-09-20/2017-09-firewall.txt: (#<Errno::ESRCH: No such process - E:/logs/firewall/2017-09-20/2017-09-20_firewall.txt>)
It looks like Logstash is reading from folders last modified in September which is creating a huge backlog of these error lines.
Does anyone know what is the problem here? Why is Logstash creating these errors?
Thanks!