【发布时间】:2016-09-20 21:54:11
【问题描述】:
我目前正在尝试使用 Logstash 网站的指南在 Windows 7 上安装和运行 Logstash。我正在努力配置和使用带有elasticsearch的logstash。使用以下内容创建了 logstash-simple.conf
`
enter code here`input { stdin { } }
output {
elasticsearch { hosts => ["localhost:9200"] }
stdout { codec => rubydebug }
}
当我执行下面的命令时:
D:\logstash-2.4.0\bin>logstash agent -f logstash-simple.conf
我得到以下错误,我尝试了很多东西,但我得到了同样的错误
←[31mNo config files found: D:/logstash-2.4.0/bin/logstash-simple.conf
Can you make sure this path is a logstash config file? {:level=>:error}←[0m
The signal HUP is in use by the JVM and will not work correctly on this platform
D:\logstash-2.4.0\bin>
【问题讨论】:
标签: logstash logstash-configuration