Logstash RabbitMQ Input - Send ack after event processed

Hello guys!

I need to send rabbitmq ack after event processed.

I tried set ack => true but acknowledges are sent before then event processing.

How can I do this?

input
{
    rabbit 
    {
        # my rabbit config
    }   
}

filter
{
    # does something
}

output
{
    # sends output to some place

    # SENDS ACK TO RABBIT MQ HERE
}

Thanks!

I do not think you can as outputs are decoupled from inputs. I think this issue describes the feature you are looking for.

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