Skip to content

Commit

Permalink
Update variables.tf (#278)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
tonyhess authored Sep 16, 2024
1 parent d9d8af8 commit b19ca92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/managed-prometheus-monitoring/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit b19ca92

Please sign in to comment.