Logstash 不产生输出
Logstash not producing output
我刚刚在 Linux 机器上安装了 logstash 1.5.3。详情:
$ uname -a
Linux hlt-dev 2.6.32-504.3.3.el6.x86_64 #1 SMP Wed Dec 17 01:55:02 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
当我尝试 运行 基本 "hello world" 设置时
$ bin/logstash -e 'input {stdin { } } output { stdout { } }'
hello world
testing
我在标准输出上什么也得不到。任何想法为什么?我在我的 Windows 机器上安装了它,并且可以在那里 运行 它。
输出到文件也不起作用:
$ bin/logstash -e 'input {stdin { } } output {file {path => "./logtest1" } }'
testing
hello world
甚至没有创建文件 "logtest1"。
logstash 引擎可能需要一段时间才能启动。耐心是一种美德!
我刚刚在 Linux 机器上安装了 logstash 1.5.3。详情:
$ uname -a
Linux hlt-dev 2.6.32-504.3.3.el6.x86_64 #1 SMP Wed Dec 17 01:55:02 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
当我尝试 运行 基本 "hello world" 设置时
$ bin/logstash -e 'input {stdin { } } output { stdout { } }'
hello world
testing
我在标准输出上什么也得不到。任何想法为什么?我在我的 Windows 机器上安装了它,并且可以在那里 运行 它。
输出到文件也不起作用:
$ bin/logstash -e 'input {stdin { } } output {file {path => "./logtest1" } }'
testing
hello world
甚至没有创建文件 "logtest1"。
logstash 引擎可能需要一段时间才能启动。耐心是一种美德!