I have a Lambda function in AWS which reports logs to an ELK instance. Each invocation of the lambda function generates a unique invocation_id
that is sent with every log event, so the events from a single invocation can be identified in ELK. At the end of the operation, I send a "Done" event.
A Lambda function can fail, or timeout, and then the "Done" event is not sent.
I want to use the logstash aggregate filter to identify the failed invocations. Meaning - each invocation_id
will be a task_id
in the aggregation map, and the "Done" event will be the end_of_task
.
And I need to tell it "on timeout (there was no done event received after X time) save the aggregated event with status=failed".
Is that possible with this filter? If so, what is the syntax? It's not clear from the docs..