Forum Discussion
roopesh_shetty
May 22, 2019Copper Contributor
repeated alerts
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 | ...
CliveWatson
May 24, 2019Former Employee
Hi, just change AlertHistory to Alert - it will only show if you have some?
Alert | where TimeGenerated > ago(30d) | summarize by Computer, AlertName
Go to Log Analytics and Run Query
roopesh_shetty
May 24, 2019Copper Contributor
Hi CLive,
this query output is always blank. Where we need to specify the threshold as 80% on this query?
Perf
| where TimeGenerated > ago(5m)
| where ObjectName == "Processor" and CounterName == "% Processor Time"
| summarize AggregatedValue = avg(CounterValue) by bin(TimeGenerated, 1m), Computer
| join (
Alert
| limit 10
) on $left.Computer == $right.SourceDisplayName
- CliveWatsonMay 24, 2019Former EmployeeHi, I was just giving you (and others) some KQL suggestions, hence a basic query, this isn't a fully working solution - it will need extra logic, and I don't even know if it will work...