Running logstash 2.3 with the following conf file :
input {
file {
path => "/var/log/logstash/access_nginx.log"
codec => "line"
sincedb_path => "null"
start_position => "beginning"
}
}
filter {
grok {
match => [ "message" , "%{IPORHOST:http_host} - %{USER:http_user} [%{HTTPDATE:http_timestamp}]"]
}
}
output {
file {
path => "/var/log/logstash/access_nginx_parsed.json"
}
stdout { codec => json }
}
Any idea what might be causing it? The folder is writable from the docker container. Thank you.