Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
3,328 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
In Scom this was so easy to do. But in Azure KQL how can I produce a graph showing the Heartbeat of a VM over eg 7 days every 5min ?
The big managers just want to see a graph of the server up-time
Just replace the COMPUTER
Heartbeat
| where TimeGenerated >= ago(7d)
| where Computer == "COMPUTER"
| summarize count() by bin(TimeGenerated, 5m)
| render timechart
Thanks for the reply.
I had to change the == to contain and it worked