I need help to configure logstash: my configuration works perfectly with simple path (without stars) and when i put a stars (*) to select more than 1 file, it doesn't works.
Work:
file {
path => 'C:\MAMP\logs\access.log'
type => "apache_access"
}
Don't work:
file {
path => 'C:\MAMP\logs\*.log'
type => "apache_access"
}
Regards