- 최신
- 최다 투표
- 가장 많은 댓글
I'd recommend to check the "Missing data treatment".
As per documentation "CloudWatch enables you to specify how to treat missing data points when evaluating an alarm. This helps you to configure your alarm so that it goes to ALARM state only when appropriate for the type of data being monitored. You can avoid false positives when missing data doesn't indicate a problem."
For each alarm, you can specify CloudWatch to treat missing data points as any of the following:
notBreaching – Missing data points are treated as "good" and within the threshold
breaching – Missing data points are treated as "bad" and breaching the threshold
ignore – The current alarm state is maintained
missing – If all data points in the alarm evaluation range are missing, the alarm transitions to INSUFFICIENT_DATA.
https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/AlarmThatSendsEmail.html
Hope that helps to sort out the Alarm after a one-minute period above the threshold the alarm would be in ALARM state.
Thanks