An Azure event routing service designed for high availability, consistent performance, and dynamic scale.
Hi @Anita Madbhavi,
Thanks for reaching out to Microsoft Q&A.
Here’s how you can dig in and help us find the root cause:
- Enable and collect diagnostic logs
- In the Azure portal, go to your Event Grid Domain → Diagnostic settings.
- Turn on PublishLogs and DeliveryLogs, and send them to a Log Analytics workspace or storage account.
- Re-reproduce the call in your time window (2026-03-09T20:50:59Z to 20:51:09Z).
- Retrieve the request/trace ID from the response headers
- On the client side, capture headers like
x-ms-client-request-id,x-ms-correlation-request-idandaeg-event-type. - Share those IDs with us so we can search the logs in our backend.
- On the client side, capture headers like
- Inspect the logs
- In Log Analytics, run a query in the timeframe you specified:
Example Kusto:
EventGridDeliveryLogs
| where TimeGenerated between (datetime(2026-03-09T20:50:59Z) .. datetime(2026-03-09T20:51:10Z))
| where StatusCode == 500
| project TimeGenerated, OperationName, CorrelationId, StatusCode, Message
- Look for any exception message or stack trace that points to a misconfiguration or transient issue.
- Check your payload & quotas
- Make sure the events you’re sending conform to the Event Grid schema. An unexpected property or too-large payload might trigger internal errors.
- Verify you haven’t hit any quotas (topics, domains or subscriptions) in Central India.
- Validate network/connectivity
- Even though the call reached the service, transient network issues can sometimes manifest as 500s. Review any Azure Firewall or NSG logs if you’re using private networking.
References:
How to enable and view Diagnostic logs for Event Grid topics or domains
Common errors with recommended solutions for Event Grid
How to view metrics for Event Grid topics and subscriptions
Hope this helps!
If the resolution was helpful, kindly take a moment to click on and click on Yes for was this answer helpful. And, if you have any further query do let us know.