Logstash Rabbitmq IO exception

Getting below exception while trying to pull logs from Rabbitmq, how can i debug more?

Connecting to RabbitMQ. Settings: {:vhost=>"/", :host=>"1.1.1.1", :port=>5671, :user=>"a", :automatic_recovery=>true, :pass=>"a", :timeout=>0, :heartbeat=>0} {:level=>:debug, :file=>"logstash/plugin_mixins/rabbitmq_connection.rb", :line=>"138", :method=>"connect"}
{:class=>"Java::JavaIo::IOException", :location=>"com.rabbitmq.client.impl.AMQChannel.wrap(com/rabbitmq/client/impl/AMQChannel.java:106)", :level=>:warn, :file=>"logstash/inputs/rabbitmq.rb", :line=>"180", :method=>"register"}

logstash conf is:

input {
rabbitmq {
host => "1.1.1.1"
port => 5671
queue => "event-queue"
durable => true
auto_delete => false
user => "a"
password => "a"
}
}
output {
stdout { codec => rubydebug }
}

versions:
logstash-2.3.1 and
logstash-input-rabbitmq-4.0.1.gem

Thanks & Regards...

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.