From 567fbb27f67304e00a987ac9beec69f6c5887e5e Mon Sep 17 00:00:00 2001 From: Quentin Manfroi Date: Thu, 23 Nov 2017 11:40:50 +0100 Subject: [PATCH] MON-79 descrease threshold for storage monitors --- cloud/azure/storage/inputs.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cloud/azure/storage/inputs.tf b/cloud/azure/storage/inputs.tf index a1d459e..9b36cc9 100644 --- a/cloud/azure/storage/inputs.tf +++ b/cloud/azure/storage/inputs.tf @@ -42,31 +42,31 @@ variable "latency_threshold_critical" { variable "timeout_error_requests_threshold_critical" { description = "Maximum acceptable percent of timeout error requests for a storage" - default = 35 + default = 5 } variable "network_error_requests_threshold_critical" { description = "Maximum acceptable percent of network error requests for a storage" - default = 35 + default = 5 } variable "throttling_error_requests_threshold_critical" { description = "Maximum acceptable percent of throttling error requests for a storage" - default = 50 + default = 10 } variable "server_other_error_requests_threshold_critical" { description = "Maximum acceptable percent of server other error requests for a storage" - default = 50 + default = 10 } variable "client_other_error_requests_threshold_critical" { description = "Maximum acceptable percent of client other error requests for a storage" - default = 75 + default = 15 } variable "authorization_error_requests_threshold_critical" { description = "Maximum acceptable percent of authorization error requests for a storage" - default = 75 + default = 15 }