Logstash无法使用多个文件通配符路径

Logstash似乎不读取通配符的路径,这是我的配置文件

input {

file {

path => "C:\logs\app*.log"

type => "MyType"

}

}

filter {

}

output {

elasticsearch {

}

}

回答:

通过用反斜杠替换反斜杠,我能够解决此问题。

C:/logs/app*.log

以上是 Logstash无法使用多个文件通配符路径 的全部内容, 来源链接: utcz.com/qa/418882.html

回到顶部