From dd0c26518abf57ac600f7a8b71a4c004b0ffbbb3 Mon Sep 17 00:00:00 2001 From: Stephen Astels Date: Tue, 23 Jul 2024 15:52:24 -0400 Subject: [PATCH] bump up throtted queue alarms --- aws/common/cloudwatch_alarms_sms.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aws/common/cloudwatch_alarms_sms.tf b/aws/common/cloudwatch_alarms_sms.tf index 319e3de40..32a99f947 100644 --- a/aws/common/cloudwatch_alarms_sms.tf +++ b/aws/common/cloudwatch_alarms_sms.tf @@ -378,7 +378,7 @@ resource "aws_cloudwatch_metric_alarm" "sqs-throttled-sms-stuck-in-queue-warning namespace = "AWS/SQS" period = 60 statistic = "Average" - threshold = 60 * 30 + threshold = 60 * 45 treat_missing_data = "missing" alarm_actions = [aws_sns_topic.notification-canada-ca-alert-warning.arn] dimensions = { @@ -396,7 +396,7 @@ resource "aws_cloudwatch_metric_alarm" "sqs-throttled-sms-stuck-in-queue-critica namespace = "AWS/SQS" period = 60 statistic = "Average" - threshold = 60 * 45 + threshold = 60 * 60 treat_missing_data = "missing" alarm_actions = [aws_sns_topic.notification-canada-ca-alert-critical.arn] insufficient_data_actions = [aws_sns_topic.notification-canada-ca-alert-warning.arn]