MON-32 increase replication lag timeframe and thresholds

This commit is contained in:
Quentin Manfroi 2018-09-20 16:00:47 +02:00
parent a4c63bdcbb
commit 08b5cb16d1

View File

@ -153,19 +153,19 @@ variable "replication_lag_time_aggregator" {
variable "replication_lag_timeframe" { 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`]" 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" type = "string"
default = "last_5m" default = "last_10m"
} }
variable "replication_lag_threshold_warning" { variable "replication_lag_threshold_warning" {
description = "Elasticache redis replication lag warning threshold in seconds" description = "Elasticache redis replication lag warning threshold in seconds"
type = "string" type = "string"
default = 0 default = 90
} }
variable "replication_lag_threshold_critical" { variable "replication_lag_threshold_critical" {
description = "Elasticache redis replication lag critical threshold in seconds" description = "Elasticache redis replication lag critical threshold in seconds"
type = "string" type = "string"
default = 1 default = 180
} }
variable "commands_silenced" { variable "commands_silenced" {