MON-459 fix missing threshold_windows on anomaly monitors

This commit is contained in:
Quentin Manfroi 2019-06-28 01:02:59 +02:00
parent d29b987623
commit 513cf6eaeb
2 changed files with 15 additions and 0 deletions

View File

@ -437,6 +437,11 @@ warning = var.http_connections_anomaly_threshold_warning
critical = var.http_connections_anomaly_threshold_critical critical = var.http_connections_anomaly_threshold_critical
} }
threshold_windows = {
trigger_window = var.http_connections_anomaly_alert_window
recovery_window = var.http_connections_anomaly_alert_window
}
evaluation_delay = var.evaluation_delay evaluation_delay = var.evaluation_delay
new_host_delay = var.new_host_delay new_host_delay = var.new_host_delay
notify_audit = false notify_audit = false

View File

@ -198,6 +198,11 @@ critical = var.mysql_threads_threshold_critical
critical_recovery = 0 critical_recovery = 0
} }
threshold_windows = {
trigger_window = var.mysql_threads_alert_window
recovery_window = var.mysql_threads_alert_window
}
evaluation_delay = var.evaluation_delay evaluation_delay = var.evaluation_delay
new_host_delay = var.new_host_delay new_host_delay = var.new_host_delay
notify_no_data = false notify_no_data = false
@ -235,6 +240,11 @@ EOQ
critical_recovery = 0 critical_recovery = 0
} }
threshold_windows = {
trigger_window = var.mysql_questions_alert_window
recovery_window = var.mysql_questions_alert_window
}
evaluation_delay = var.evaluation_delay evaluation_delay = var.evaluation_delay
new_host_delay = var.new_host_delay new_host_delay = var.new_host_delay
notify_no_data = false notify_no_data = false