Server Heartbeat monitoring in Azure Monitor
Pawan Tiwari
1
Reputation point
Hi, I have server with heartbeat monitoring setup using the below query
InsightsMetrics
| where TimeGenerated > ago(7m)
| where Computer contains "MyVM01"
| where Name contains "HeartBeat"
| where Origin contains "vm.azm.ms/map"
| sort by TimeGenerated
| limit 5
with evaluation period set as 5 min and frequency as 5 minutes too. This query is generating alert every 5 minutes for the heartbeat failure and most of them are false one. Could anyone help me with what's wrong in this query?
Thanks
PT
Sign in to answer