Azure Monitor alerts captures metric threshold breaches, log query matches, activity log events, and resource health conditions across your Azure resources.
To forward these alerts to Dynatrace, create an action group with an Event Hubs action that routes alerts to the dt-events-evh event hub deployed by the ARM template.
When configuring the Event Hubs action, enable the Common alert schema. The default native schema is not supported and alerts will not be ingested.
dt-events-evh.After creating the action group, attach it to alert rules by editing each rule and selecting the action group under Actions. For more information, see Azure action groups.
Instead of attaching the action group to each alert rule individually, an Azure Monitor Alert processing rule can automatically apply the action group to all matching alerts across a subscription or resource group—including alert rules you add later.
The rule applies to all existing alerts within the selected scope and automatically covers new alert rules as they are created. For more information, see Alert processing rules in Azure documentation.
Notebooks You can query Azure Monitor alerts ingested via Dynatrace using
Notebooks and DQL.
Use the dt.da.source attribute to filter for alerts ingested through the Azure alerts ingest pipeline.
fetch events| filter dt.da.source == "azure-event-ingest"| sort timestamp desc