This is my serverless
Cloudformation:
MyAlarm1:
Type: AWS::CloudWatch::Alarm
Properties:
AlarmName: "MyAlarm1"
Namespace: AWS/SQS
Statistic: Sum
Period: 600
EvaluationPeriods: 1
Threshold: 1
ComparisonOperator: GreaterThanThreshold
MetricName: ApproximateNumberOfMessagesVisible
AlarmActions:
- arn:aws:sns:us-west2:MySNSTopic1
Dimensions:
- Name: QueueName
Value: arn:aws:sqs:us-west-2:MyQueueName1
I get the alarm successfully created via Cloudformation, however the alarm stays in INSUFFICIENT_DATA
state. This is what I've tried so far:
- Adding stuff to the queue which is configured as dimension in the alarm
- Re-adjusting the evaluation periods
- Adding subscription to the queue
- Adding subscription to the SNS topic where the alarm publishes the event
I've managed to fix it. The dimensions were misconfigured. Correct configuration as follows: