Make checkly alert after 5 minutes of downtime (#2599)

This commit is contained in:
Uku Taht 2023-01-17 11:58:01 +02:00 committed by GitHub
parent 5ba8697c31
commit 2a4061de8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -213,6 +213,14 @@ resource "checkly_check_group" "reachability" {
channel_id = checkly_alert_channel.pagerduty.id
activated = true
}
alert_settings {
escalation_type = "TIME_BASED"
time_based_escalation {
minutes_failing_threshold = 5
}
}
}
resource "checkly_alert_channel" "pagerduty" {