简体   繁体   中英

Cloudwatch set alarm if no message in sqs for an hour

Is there a way to alarm in cloudwatch when there is no message in SQS for a hour? I tried setting the following alarm:

Metric Name: NumberOfMessagesSent <= 0 for 60 datapoints within 1 hour
Statistic:SampleCount
Period:1 minute

However after 1 hour of no messages, it goes into the insufficient data alarm state. What am I doing wrong here?

Amazon SQS does not send metrics to Amazon CloudWatch if the queue empty .

Therefore, you should set your alarm to trigger when the state is INSUFFICIENT_DATA . This will effectively be the same as testing for an empty queue.

INSUFFICIENT_DATA

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM