From 7de2bf4aca61736a28d143260e4d91799bca2ec6 Mon Sep 17 00:00:00 2001 From: Quentin Manfroi Date: Fri, 15 Dec 2017 13:13:09 +0100 Subject: [PATCH] MON-74 decrease thresholds for 404 errors --- cloud/azure/app-services/inputs.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/cloud/azure/app-services/inputs.tf b/cloud/azure/app-services/inputs.tf index 541a0e7..96c2892 100644 --- a/cloud/azure/app-services/inputs.tf +++ b/cloud/azure/app-services/inputs.tf @@ -55,17 +55,17 @@ variable "memory_usage_threshold_warning" { ################################# variable "http_404_requests_threshold_critical" { - default = 40 - description = "Maximum critical acceptable percent of 404 errors" -} - -variable "http_404_requests_threshold_warning" { default = 30 description = "Maximum critical acceptable percent of 404 errors" } +variable "http_404_requests_threshold_warning" { + default = 15 + description = "Maximum warning acceptable percent of 404 errors" +} + ################################# -### HTTP 202 status pages ### +### HTTP 2xx status pages ### ################################# variable "http_2xx_requests_threshold_critical" {