Slide 22
Slide 22 text
Tag Base Downtime
• モニターは全て Terraform で管理
• tags にサービス名を指定
resource "datadog_synthetics_test" "test_alert" {
count = var.test_alert.create ? 1 : 0
name = "test synthetics"
type = "api"
subtype = "http"
status = var.test_alert.status
locations = var.test_alert.locations
tags = [
"env:${var.env}",
"service:${var.test_alert.service}",
"managed_by:terraform",
"check_type:api",
"depends_on:service_a"
]
...
}
指定も簡単で
設定の抜け漏れも防
止