From af8eb7a30f77de34751c6819f2e6931490728fa4 Mon Sep 17 00:00:00 2001 From: Dominic Monroe Date: Wed, 12 Dec 2018 17:27:48 +0000 Subject: [PATCH] Correct cpu credit balance metric name (#6) --- alarms.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alarms.tf b/alarms.tf index 8ddcba0..abc2766 100644 --- a/alarms.tf +++ b/alarms.tf @@ -50,7 +50,7 @@ resource "aws_cloudwatch_metric_alarm" "cpu_credit_balance_too_low" { alarm_name = "cpu_credit_balance_too_low" comparison_operator = "LessThanThreshold" evaluation_periods = "1" - metric_name = "CPUUtilization" + metric_name = "CPUCreditBalance" namespace = "AWS/RDS" period = "600" statistic = "Average"