I am testing using logstash-1.4.0 on linux with this tutorial .
I think this may be a bug in this version.
For example, I am testing this command both on Linux and in a window. Everything is fine on Linux. But this will result in your window error!
bin> logstash agent -e 'input {stdin {}} output {stdout {}}'
According to my recommendation, you can write your configuration in a file. For example, save input{stdin{}}output{stdout{}} in a call to the file "stdin.conf". Then, when you start logstash, do not use the -e flag, but use -f and specify your configuration file.
bin> logstash agent -f stdin.conf
Hope this helps you.
source share