Update synthetic_check_alerts.tf

This commit is contained in:
Rasmus Wejlgaard 2026-05-06 05:59:27 +01:00 committed by GitHub
parent 08b7d59fde
commit ce45843251
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -70,3 +70,14 @@ resource "grafana_synthetic_monitoring_check_alerts" "jellyfin-requests" {
] ]
} }
resource "grafana_synthetic_monitoring_check_alerts" "git" {
check_id = grafana_synthetic_monitoring_check.git.id
alerts = [
{
name = "ProbeFailedExecutionsTooHigh"
threshold = 3
period = "30m"
runbook_url = ""
}
]
}