Hi! I want to read from multiple log files using file input plugin
For ex,
input {
file {
path => ["/var/log/search.log*"]
type => "red_searchlog"
sincedb_path => "/dev/null"
start_position => "beginning"
}
}
my log files are: search.log, search.log.1, search.log.2, search.log.3 and so on
Can I use wildcard in this case?