Hi all,
we are using Logstash for first time in a project and we are using it to process e-mails (imap input), transform some fields and send the event to an http output (Http output plugin | Logstash Reference [7.15] | Elastic)
output {
http {
url => "${HTTP_OUTPUT_URL}"
http_method => "post"
format => "json"
retry_failed => failed
automatic_retries => 5
}
}
When the receiver system has temporary issues we retry five times.
But after that the output plugin gives up, which is fine for us but we would like react on that.
How we could archive this?
Is there any means of exception/error handling in the Logstash pipeline?