repeated alerts

Copper Contributor

Hi Guys, Using below query I have enabled the alert for Processor Utilization with threshold of 80% targeting multiple windows servers on my workspace in Azure monitoring log space analytics. Perf | where ObjectName == "Processor" and CounterName == "% Processor Time" | summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 5m), Computer | where AggregatedValue > 80 Now the problem is I am getting multiple repeated alerts for the same severs for every 5 minutes as the query frequency is set for 5 minutes. Can Some one please guide me to stop this behavior so that it should trigger new alerts only when the new server breaches the threshold of 80%.

1 Reply

I would suggest using dynamic alerts to help cut down on the noise. It may take a few alerts to tune it to exactly what you want but worth the effort.

 

https://docs.microsoft.com/en-us/azure/azure-monitor/platform/alerts-dynamic-thresholds

 

@roopesh_shetty