Azure · Operations
Azure Monitor
Metrics, logs, alerts across Azure.
Official docsOverview
Azure Monitor includes Metrics, Log Analytics (KQL), Alerts, Action Groups and Workbooks.
When to use it
- Synthetic tests + SLO tracking
- Alerting on canary regressions
Setup
- Enable diagnostic settings → Log Analytics workspace.
- Create alert rules + action groups.
How to use
KQL
AppRequests
| where Success == false
| summarize fail=count() by bin(TimeGenerated,5m), Url
| where fail > 10QA use cases
- Burn-rate alerts that auto-rollback canary deployments.
