An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
Hello Prabhu Rathnam,
Thank you for reaching out to the Microsoft Q&A forum.
When investigated we see a day-by-day breakdown of how many Log Alert V2 rules have fired and be able to pin that chart to a dashboard. You have a few options:
- Use the Metrics blade on your Log Alert rule • Go to Azure Portal → Monitor → Alerts → Alert rules • Click your Log Alert V2 rule, then click “Metrics” • In the Metrics view: – Select the “Triggered alert count” (or “Fired alerts”) metric – Set the aggregation period to 1 day and grouping to “TimeGenerated” – You’ll see a bar/line chart of alerts per day—pin that to your dashboard
- Build or use the built-in Alerts workbook • In Azure Portal → Monitor → Workbooks • Search for “Alerts” or “Alert overview” workbook • The workbook has charts for fired alerts over time (by rule, severity, etc.) • Customize the time range, drill down by day, then pin visuals to your dashboard
- Send alert events to Log Analytics and Kusto-query them a. Enable a diagnostic setting on your subscription (or resource group) to send Alert events to a Log Analytics workspace b. In Logs, run a query like:
c. Visualize the query results as a time chart and pin to your dashboardAzureDiagnostics | where Category == "ScheduledQueryRule" and OperationName == "AlertTriggered" | summarize count() by bin(TimeGenerated, 1d)- View Alert History (for quick list view) • Monitor → Alerts → “View alert history” shows all fired alerts—filter by date and rule—but it’s more of a table than a chart
Follow-up questions (if any of the above steps don’t match what you’re seeing):
- Have you enabled a diagnostic setting on your subscription/resource group to route alert events into a Log Analytics workspace?
- Do you already have a Log Analytics workspace where you can query AzureDiagnostics or AlertsManagement tables?
- Are you looking at rule-level metrics (how many times a specific alert rule fired) or workspace-wide counts across all rules?
Hope this helps you get those per-day stats up on a dashboard!
Reference list: –
How to create, view, and manage log alerts:
– Troubleshooting log alerts (not firing/delays):
https://docs.microsoft.com/azure/azure-monitor/alerts/alerts-troubleshoot-log
– Azure Monitor Alerts overview:
https://docs.microsoft.com/azure/azure-monitor/alerts/alerts-overview
– Using Azure Monitor Workbooks:
https://docs.microsoft.com/azure/azure-monitor/platform/workbooks-overview