Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase Cloud SQL alert threshold to 98% #569

Merged
merged 2 commits into from
Mar 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions terraform/gcp/modules/monitoring/infra/alerts.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ resource "google_monitoring_alert_policy" "cloud_sql_memory_utilization" {
project = var.project_id
}

# Cloud SQL Database Disk Utilization > 95%
# Cloud SQL Database Disk Utilization > 98%
resource "google_monitoring_alert_policy" "cloud_sql_disk_utilization" {
# In the absence of data, incident will auto-close in 7 days
alert_strategy {
Expand All @@ -126,7 +126,7 @@ resource "google_monitoring_alert_policy" "cloud_sql_disk_utilization" {
comparison = "COMPARISON_GT"
duration = "0s"
filter = "metric.type=\"cloudsql.googleapis.com/database/disk/utilization\" resource.type=\"cloudsql_database\""
threshold_value = "0.95"
threshold_value = "0.98"

trigger {
count = "1"
Expand All @@ -137,10 +137,10 @@ resource "google_monitoring_alert_policy" "cloud_sql_disk_utilization" {
display_name = "Cloud SQL Database - Disk utilization [MEAN]"
}

display_name = "Cloud Sql Disk Utilization > 95%"
display_name = "Cloud Sql Disk Utilization > 98%"

documentation {
content = "Cloud SQL disk utilization is > 95%. Please increase capacity. "
content = "Cloud SQL disk utilization is > 98%. Please increase capacity. Note that autoresize should be enabled for the database. Ensure there is no issue with the autoresize process."
mime_type = "text/markdown"
}

Expand Down Expand Up @@ -331,4 +331,4 @@ resource "google_monitoring_alert_policy" "k8s_container_cpu_allocatable_utiliza
enabled = "true"
notification_channels = local.notification_channels
project = var.project_id
}
}