Logstash 编解码器 ruby​​debug 不工作

Logstash codec rubydebug is not working

在 windows 机器上安装了最新版本的 Logstash 并尝试执行以下配置。

"
input{
stdin{}
}
output
{
stdout {codec => rubydebug}

}"

输出数据未显示格式。你需要安装 ruby​​debug 插件吗?您如何在 windows 中安装?要执行的命令是什么?

在logstash目录下配置file:logstash-simple.conf

input { stdin { } }
output {
  elasticsearch { hosts => ["localhost:9200"] }
  stdout { codec => rubydebug }
}

然后 运行 以下命令来自 windows(我的案例)

bin\logstash.bat -f logstash-simple.conf