From dd30d5336ea880af6878851d971387e7ce508aab Mon Sep 17 00:00:00 2001 From: Rafael Romero Carmona Date: Wed, 4 Jul 2018 12:32:34 +0200 Subject: [PATCH] MON-224 Avoid notifying if no data for MySQL alerts because we can have no queries, questions or connections and it could be completely right. --- cloud/gcp/cloud-sql/mysql/monitors-cloudsql-mysql.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cloud/gcp/cloud-sql/mysql/monitors-cloudsql-mysql.tf b/cloud/gcp/cloud-sql/mysql/monitors-cloudsql-mysql.tf index a81b8af..dac2edd 100644 --- a/cloud/gcp/cloud-sql/mysql/monitors-cloudsql-mysql.tf +++ b/cloud/gcp/cloud-sql/mysql/monitors-cloudsql-mysql.tf @@ -32,7 +32,7 @@ EOF critical = "${var.network_connections_threshold_critical}" } - notify_no_data = true + notify_no_data = false require_full_window = false renotify_interval = 0 notify_audit = false @@ -123,7 +123,7 @@ EOF critical = "${var.queries_changing_threshold_critical}" } - notify_no_data = true + notify_no_data = false require_full_window = false renotify_interval = 0 notify_audit = false @@ -174,7 +174,7 @@ EOF critical = "${var.questions_changing_threshold_critical}" } - notify_no_data = true + notify_no_data = false require_full_window = false renotify_interval = 0 notify_audit = false