Logstash on network volume

Hello,
I have a working .conf file (it is working on my local disk). But when I change the path (I use file plugin) to my network disk Z, logstash doesn't detect any logs without sending any errors (with --verbose enabled).
Version I use : Elasticsearch 6.6.1
Kibana 6.6.1
Logstash 6.6.1
I red in the documentation that using file plugin is not advised but I can't make filebeat working with my multilines logs.
Thank you

input {
file {
path => ["Z:/xxx/xxx/xxx/test/*.log"]
exclude => ["lol.log"]
start_position => "beginning"
#sincedb_path => "NUL"
codec => multiline {
pattern => "^%{DATESTAMP} "
negate => true
what => "previous"
}
}
}

I found the solution : put ip of your volume instead of Z.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.