AWS - CloudWatch
Given this CloudWatch alarm configuration snippet:
What happens when the CPU utilization exceeds 80% for 2 evaluation periods?
{
"AlarmName": "HighCPU",
"MetricName": "CPUUtilization",
"Namespace": "AWS/EC2",
"Threshold": 80,
"ComparisonOperator": "GreaterThanThreshold",
"EvaluationPeriods": 2,
"AlarmActions": ["arn:aws:sns:us-east-1:123456789012:NotifyMe"]
}What happens when the CPU utilization exceeds 80% for 2 evaluation periods?
