From 08b5cb16d13b77347bca4b71b00de52e966687d8 Mon Sep 17 00:00:00 2001 From: Quentin Manfroi Date: Thu, 20 Sep 2018 16:00:47 +0200 Subject: [PATCH] MON-32 increase replication lag timeframe and thresholds --- cloud/aws/elasticache/redis/inputs.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud/aws/elasticache/redis/inputs.tf b/cloud/aws/elasticache/redis/inputs.tf index edfc238..4e7a5d0 100644 --- a/cloud/aws/elasticache/redis/inputs.tf +++ b/cloud/aws/elasticache/redis/inputs.tf @@ -153,19 +153,19 @@ variable "replication_lag_time_aggregator" { variable "replication_lag_timeframe" { description = "Monitor timeframe for Elasticache redis replication lag [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`]" type = "string" - default = "last_5m" + default = "last_10m" } variable "replication_lag_threshold_warning" { description = "Elasticache redis replication lag warning threshold in seconds" type = "string" - default = 0 + default = 90 } variable "replication_lag_threshold_critical" { description = "Elasticache redis replication lag critical threshold in seconds" type = "string" - default = 1 + default = 180 } variable "commands_silenced" {