Nitin Jain
Nitin Jain

Reputation: 188

Email notification when Event grid fails in event delivery against its subscriber

I am using Azure function to subscribe events from event grid topic.

Due to some failure If my Azure function stopped to work then Azure event delivery fails.

How to get emails notification when this delivery fails.

Upvotes: 2

Views: 439

Answers (1)

Sean Feldman
Sean Feldman

Reputation: 25994

Azure Event Grid support dead-lettering. Once all retries have been exhausted, when dead-lettering is configure configured, failed events will be stored in Storage account as blobs. At that point, you're free to chose what mechanism to use to send your email notification. One option is to use Azure Function with Storage Blob trigger with SendGrid email binding.

Upvotes: 1

Related Questions