Logstash:无法找到任何名为' stdin'的输入插件。

时间:2015-07-30 12:30:43

标签: logstash

我试图开始使用logstash。我刚刚下载了logstash最新版本(1.5.3)并尝试从简单配置开始,但我收到了以下错误。

我使用logstash-1.4.2做了同样的事情,一切正常。

我该怎么做才能让它发挥作用?

追踪:

E:\log tools\logstash-1.5.2\bin>logstash -e 'input { stdin { } } output { stdout { codec => rubydebug } }'

    io/console not supported; tty will not be manipulated
    The error reported is:
      Couldn't find any input plugin named 'stdin'. Are you sure this is correct? Trying to load the stdin input plugin resulted in this error: no suc
    h file to load -- concurrent/atomic_reference/concurrent_update_error

1 个答案:

答案 0 :(得分:0)

如果您参考此answer,您可以看到您需要将配置放在配置文件中,因为logstash 1.4存在问题,而且似乎在logstash 1.5中存在同样的问题

相关问题