Which is the correct monitoring query that will monitor the CPU utilization threshold including an alarm?
The correct monitoring query that will monitor the CPU utilization threshold including an alarm is (CpuUtilization[1m] .max()> 80).grouping().sum (). This query will return the sum of the maximum CPU utilization values for each metric stream in a one-minute interval, and compare it with the threshold value of 80%. If the sum is greater than 80%, the alarm condition is met and an alarm is triggered.
Currently there are no comments in this discussion, be the first to comment!