Complete the code to specify the metric name for the CloudWatch alarm.
MetricName: "[1]"
The metric name CPUUtilization is commonly used to monitor CPU usage in CloudWatch alarms.
Complete the code to set the comparison operator for the alarm.
ComparisonOperator: "[1]"
The GreaterThanThreshold operator triggers the alarm when the metric value is higher than the threshold.
Fix the error in the alarm configuration by completing the missing statistic field.
Statistic: "[1]"
The Average statistic is commonly used to evaluate the average value of the metric over the period.
Fill both blanks to set the alarm threshold and evaluation periods.
Threshold: [1], EvaluationPeriods: [2]
The threshold is set to 80 to trigger the alarm when the metric exceeds 80. The alarm evaluates over 3 periods to confirm the condition.
Fill all three blanks to complete the alarm action configuration.
AlarmActions: ["[1]"], OKActions: ["[2]"], InsufficientDataActions: ["[3]"]
The AlarmActions ARN sends notifications when the alarm triggers. OKActions ARN sends notifications when the alarm recovers. InsufficientDataActions ARN sends notifications when data is missing.