elasticsearch - Logstash not working with multiple files wildcard path -
logstash doesn't seem read path wildcard here config file
input { file { path => "c:\logs\app*.log" type => "mytype" } } filter { } output { elasticsearch { } }
i able resolve issue replacing backslash slash.
c:/logs/app*.log
Comments
Post a Comment