cdklabs / cdk-monitoring-constructs

Easy-to-use CDK constructs for monitoring your AWS infrastructure
https://constructs.dev/packages/cdk-monitoring-constructs
Apache License 2.0
444 stars 56 forks source link

fix(sqs): fix sqs message age and min incoming dedupe #540

Closed rhermes62 closed 2 days ago

rhermes62 commented 3 days ago

Our team has a variety of SQS alarms including tiered alarm on message ages and tiered alarms based on how long we haven't seen messages in.

However, these are not currently deduping as expected which we root caused to the alarmDedupeStringSuffix being missing on these alarms.

The message age issue is reported in #255.

This PR fixes both #255 and the unreported minute incoming messages issue by adding alarmDedupeStringSuffix for them.

Fixes #255


By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license