Share via

How does action group handle alert retries

2026-05-04T07:41:51.6066667+00:00

I want to know how does Action Group handle retries(whether it retires or not, and if it does what are the details). In my case I want will be using Events Hub which will be directly connected to the Action Group. Now when the Event Hub is down for whatver reason what is the logic of retrying alerts.

Azure Monitor
Azure Monitor

An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.


1 answer

Sort by: Most helpful
  1. Alex Burlachenko 20,665 Reputation points MVP Volunteer Moderator
    2026-05-04T12:08:53.1+00:00

    VERMA VedantFRJP:IT Infrastructure

    action groups do retry, but it is not infinite and not something u can tune directly 😄 for Event Hub specifically Azure Monitor will try delivery with built-in retry + backoff, but if Event Hub is unavailable long enough the notification is dropped, there is no guaranteed delivery or durable queue in Action Group itself. think of it as best-effort push, not message broker. retries are short-lived (minutes range), not hours, and no replay once it gives up.

    important nuance for Event Hub receiver if the namespace is reachable but throttling/partial failure happens, retries usually succeed, if the endpoint is fully down or auth fails, retries will exhaust quickly. there is no dead-letter or retry queue u can access from Action Group side.

    if u need reliability, recommended pattern is not direct Action Group > Event Hub, but insert something durable:

    • Action Group > Logic App > retry policy + queue
    • or Action Group > Event Grid > Event Hub (Event Grid has better delivery guarantees and retry window)

    monitor Action Group delivery failures via Activity Log / alert processing logs, because failures are not always obvious.

    rgds, Alex

    &

    if my answer helps pls accept it.
    
    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.