Skip to content

Commit

Permalink
Merge pull request #8362 from ministryofjustice/DBA-779
Browse files Browse the repository at this point in the history
Avoid noise from short latency spikes
  • Loading branch information
bill-buchan authored Oct 22, 2024
2 parents a22a4c9 + 353f4fb commit bcaf250
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ resource "aws_cloudwatch_metric_alarm" "dms_cdc_latency_source" {
statistic = "Average"
metric_name = "CDCLatencySource"
comparison_operator = "GreaterThanThreshold"
threshold = 10
evaluation_periods = 2
threshold = 15
evaluation_periods = 3
period = 30
actions_enabled = true
alarm_actions = [aws_sns_topic.dms_alerting.arn]
Expand All @@ -92,8 +92,8 @@ resource "aws_cloudwatch_metric_alarm" "dms_cdc_latency_target" {
statistic = "Average"
metric_name = "CDCLatencyTarget"
comparison_operator = "GreaterThanThreshold"
threshold = 10
evaluation_periods = 2
threshold = 15
evaluation_periods = 3
period = 30
actions_enabled = true
alarm_actions = [aws_sns_topic.dms_alerting.arn]
Expand Down

0 comments on commit bcaf250

Please sign in to comment.