Hi
List-users
I have a logstash consumer which is reading messages from RabbitMQ queues through rabbitmq input. I want to speed up the delivery using auto acknowledgement = true . I have checked the logstash documentation for auto acknowledgement features. But there is nothing such auto ack attribute here.
How can i accomplish this features through logstash.
input {
rabbitmq {
host => "localhost"
queue => "MessageQueue"
durable => true
key => "MessageKey"
exchange => "MessageExchange"
exchange_type => "topic"
port =>"5672"
password => "rabbit"
auto_delete => false
}
}
Thanks