Hello,
my Logstash Server has an Upload-Directory where other Users can upload their Log-Files.
Logstash is configured to listen to all files in this directory.
input {
file {
path => "/opt/logupload/*.log"
start_position => "beginning"
stat_interval => 5
codec => ...
}
}
When I have uploaded a new file, nothing happen's in Logstash. But when I stop my Logstash-Service it begin to parse the file.
Do you have an idea, why the parsing only starts when the service will be stopped?