logstash-plugins / logstash-input-rabbitmq

Apache License 2.0
30 stars 43 forks source link

Where to find the logs for this plugin? #88

Closed rukai-kooboo closed 8 years ago

rukai-kooboo commented 8 years ago

Hi There, I'm new to Logstash and using RabbitMQ + ELK.

RabbitMQ: 3.6.4 Logstash: 2.3.4

I've installed all tools, and they works fine themselves. But I can't find the index in Elastic Search after pushing message queue to Logstash via RabittMQ:

The config:

input { rabbitmq { host => "127.0.0.1" user => "guest" password => "guest" queue => "test_queue" key => "TestDev.Logging.*" exchange => "testdev-logging" } } output { elasticsearch { hosts => "localhost:9200" index => "logstash-testdev-%{+xxxx.ww}" } }

Seems logstash can't receive the message from RabiitMQ and push to Elastic Search? HELP!

Thanks!