Well, I was the next problem. I have a workspace as follows.
bin conf example lib LICENSE locales patterns README.md spec vendor
In the conf folder, I have a logstash-apache.conf with the following input
input { file { path => "./../example/logs/logprueba/*_log" start_position => beginning } } }
When I start logstash, I get a message:
File paths must be absolute, relative path specified: ./../example/logs/logprueba/*_log
Is there a way to set the relative path?
source share