From a5172e3956ad4b5ff0840ff55f8a4cbf57fde680 Mon Sep 17 00:00:00 2001 From: Rani Mounika Kotakadi <43810286+RaniMounikaKotakadi@users.noreply.github.com> Date: Mon, 16 Sep 2019 14:46:20 +0530 Subject: [PATCH] Changed Warning Thresholds --- ansible/roles/stack-monitor/defaults/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ansible/roles/stack-monitor/defaults/main.yml b/ansible/roles/stack-monitor/defaults/main.yml index ce102e32d..91d4d337d 100644 --- a/ansible/roles/stack-monitor/defaults/main.yml +++ b/ansible/roles/stack-monitor/defaults/main.yml @@ -178,19 +178,19 @@ docker_service_replicas_memory_limit: 256MB prometheus_mount_point: "/root/dockerdata/prometheus/data/" #################################################### Monitoring limits ################################################ -container_cpu_usage_percentage_threshold_Warning: 70 +container_cpu_usage_percentage_threshold_Warning: 75 container_cpu_usage_percentage_threshold_Critical: 85 container_cpu_usage_percentage_threshold_Fatal: 95 -container_memory_usage_percentage_threshold_Warning: 70 +container_memory_usage_percentage_threshold_Warning: 75 container_memory_usage_percentage_threshold_Critical: 85 container_memory_usage_percentage_threshold_Fatal: 95 -node_cpu_usage_percentage_threshold_Warning: 70 +node_cpu_usage_percentage_threshold_Warning: 75 node_cpu_usage_percentage_threshold_Critical: 85 node_cpu_usage_percentage_threshold_Fatal: 95 -node_memory_usage_percentage_threshold_Warning: 70 +node_memory_usage_percentage_threshold_Warning: 75 node_memory_usage_percentage_threshold_Critical: 85 node_memory_usage_percentage_threshold_Fatal: 95 @@ -198,7 +198,7 @@ node_load_avg_threshold_Warning: 85 node_load_avg_threshold_Critical: 95 node_load_avg_threshold_Fatal: 120 -node_disk_usage_percentage_threshold_Warning: 70 +node_disk_usage_percentage_threshold_Warning: 75 node_disk_usage_percentage_threshold_Critical: 85 node_disk_usage_percentage_threshold_Fatal: 95 @@ -206,6 +206,6 @@ postgres_number_of_connections_Warning: 100 postgres_number_of_connections_Critical: 110 postgres_number_of_connections_Fatal: 130 -elasticsearch_filesystem_data_remaining_threshold_Warning: 20 +elasticsearch_filesystem_data_remaining_threshold_Warning: 25 elasticsearch_filesystem_data_remaining_threshold_Critical: 15 elasticsearch_filesystem_data_remaining_threshold_Fatal: 10 -- GitLab