84 lines
1.9 KiB
HCL
84 lines
1.9 KiB
HCL
#
|
|
# Datadog global variables
|
|
#
|
|
variable "environment" {
|
|
description = "Architecture environment"
|
|
type = "string"
|
|
}
|
|
|
|
variable "filter_tags" {
|
|
description = "Tags used for filtering"
|
|
default = "*"
|
|
}
|
|
|
|
variable "message" {
|
|
description = "Message sent when a monitor is triggered"
|
|
}
|
|
|
|
variable "evaluation_delay" {
|
|
description = "Delay in seconds for the metric evaluation"
|
|
default = 900
|
|
}
|
|
|
|
variable "new_host_delay" {
|
|
description = "Delay in seconds for the new host evaluation"
|
|
default = 300
|
|
}
|
|
|
|
variable "prefix_slug" {
|
|
description = "Prefix string to prepend between brackets on every monitors names"
|
|
default = ""
|
|
}
|
|
|
|
#
|
|
# Replication Lag
|
|
#
|
|
|
|
variable "replication_lag_message" {
|
|
description = "Custom message for the Replication Lag monitor"
|
|
type = "string"
|
|
default = ""
|
|
}
|
|
|
|
variable "replication_lag_time_aggregator" {
|
|
description = "Time aggregator for the Replication Lag monitor"
|
|
type = "string"
|
|
default = "min"
|
|
}
|
|
|
|
variable "replication_lag_timeframe" {
|
|
description = "Timeframe for the Replication Lag monitor"
|
|
type = "string"
|
|
default = "last_10m"
|
|
}
|
|
|
|
variable "replication_lag_threshold_warning" {
|
|
description = "Seconds behind the master (warning threshold)"
|
|
type = "string"
|
|
default = 90
|
|
}
|
|
|
|
variable "replication_lag_threshold_critical" {
|
|
description = "Seconds behind the master (critical threshold)"
|
|
type = "string"
|
|
default = 180
|
|
}
|
|
|
|
variable "replication_lag_silenced" {
|
|
description = "Groups to mute for GCP Cloud SQL Replication Lag monitor"
|
|
type = "map"
|
|
default = {}
|
|
}
|
|
|
|
variable "replication_lag_enabled" {
|
|
description = "Flag to enable GCP Cloud SQL Replication Lag monitor"
|
|
type = "string"
|
|
default = "true"
|
|
}
|
|
|
|
variable "replication_lag_extra_tags" {
|
|
description = "Extra tags for GCP Cloud SQL SQL Replication monitor"
|
|
type = "list"
|
|
default = []
|
|
}
|