An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
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.