From c16dd3676dd27ef016803b3ae02965ce3c4cb2f9 Mon Sep 17 00:00:00 2001 From: jnancel Date: Mon, 1 Oct 2018 13:55:04 +0200 Subject: [PATCH] MON-316 Change value according to omni zabbix templates --- cloud/azure/serverfarms/inputs.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cloud/azure/serverfarms/inputs.tf b/cloud/azure/serverfarms/inputs.tf index 3f88290..f096b72 100644 --- a/cloud/azure/serverfarms/inputs.tf +++ b/cloud/azure/serverfarms/inputs.tf @@ -102,17 +102,17 @@ variable "cpu_percentage_time_aggregator" { variable "cpu_percentage_timeframe" { description = "Monitor timeframe for serverfarms cpu_percentage [available values: `last_#m` (1, 5, 10, 15, or 30), `last_#h` (1, 2, or 4), or `last_1d`]" type = "string" - default = "last_5m" + default = "last_10m" } variable "cpu_percentage_threshold_critical" { description = "CPU percentage (critical threshold)" - default = 80 + default = 95 } variable "cpu_percentage_threshold_warning" { description = "CPU percentage (warning threshold)" - default = 60 + default = 90 } # Memory percentage @@ -154,10 +154,10 @@ variable "memory_percentage_timeframe" { variable "memory_percentage_threshold_critical" { description = "Memory percentage (critical threshold)" - default = 80 + default = 95 } variable "memory_percentage_threshold_warning" { description = "Memory percentage (warning threshold)" - default = 60 + default = 90 }