Skip to content

Commit

Permalink
reduce rds alert threshold to 50 db connections
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewsearle01 committed Dec 20, 2023
1 parent ea341a8 commit e3b194e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/environments/dacp/rds.tf
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ resource "aws_cloudwatch_metric_alarm" "rds_connections_alarm" {
namespace = "AWS/RDS"
period = "120"
statistic = "Average"
threshold = "60" # Set desired threshold for high connections
alarm_description = "This metric checks if RDS database connections are high - threshold set to 60"
threshold = "50" # Set desired threshold for high connections
alarm_description = "This metric checks if RDS database connections are high - threshold set to 50"
alarm_actions = [aws_sns_topic.dacp_utilisation_alarm[0].arn]

dimensions = {
Expand Down

0 comments on commit e3b194e

Please sign in to comment.