From b19ca92c38025ec70b62cf11160b16c1582de2a1 Mon Sep 17 00:00:00 2001 From: Tony Hess <119611347+tonyhess@users.noreply.github.com> Date: Mon, 16 Sep 2024 08:37:29 -0500 Subject: [PATCH] Update variables.tf (#278) Based on recommended settings from AMP Product manager. Active series auto scales to 10M metrics so we are setting to 80% of that or 8M. Ingestion scales along with active series so we are setting to 136,000 --- modules/managed-prometheus-monitoring/variables.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/managed-prometheus-monitoring/variables.tf b/modules/managed-prometheus-monitoring/variables.tf index abc49363..bfd20ec0 100644 --- a/modules/managed-prometheus-monitoring/variables.tf +++ b/modules/managed-prometheus-monitoring/variables.tf @@ -11,13 +11,13 @@ variable "managed_prometheus_workspace_ids" { variable "active_series_threshold" { description = "Threshold for active series metric alarm" type = number - default = 1000000 + default = 8000000 } variable "ingestion_rate_threshold" { description = "Threshold for active series metric alarm" type = number - default = 70000 + default = 136000 } variable "dashboards_folder_id" {