在Windows机器中安装了最新版本的Logstash,并尝试执行以下配置。
"
input{
stdin{}
}
output
{
stdout {codec => rubydebug}
}"
输出数据未显示格式。你需要安装rubydebug插件吗?你怎么能在Windows中安装?什么是执行命令?
答案 0 :(得分:2)
在logstash目录中配置文件:logstash-simple.conf
input { stdin { } }
output {
elasticsearch { hosts => ["localhost:9200"] }
stdout { codec => rubydebug }
}
然后从windows(我的情况)运行以下命令
bin\logstash.bat -f logstash-simple.conf