From a1bed2ca9fc19c674829536d0e1d11b3e45fa7ef Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 6 Sep 2023 19:22:02 +0100 Subject: [PATCH] Reduce frequency on some monitoring probes The frequency is per-region, so it's still quite regular --- terraform/grafana_cloud.tf | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/terraform/grafana_cloud.tf b/terraform/grafana_cloud.tf index a8c23e2..fbc4995 100644 --- a/terraform/grafana_cloud.tf +++ b/terraform/grafana_cloud.tf @@ -87,6 +87,8 @@ resource "grafana_synthetic_monitoring_check" "personal_website" { alert_sensitivity = "high" timeout = 5000 # 5 seconds + frequency = 120 * 1000 # 2 minutes + settings { http { ip_version = "Any" @@ -105,6 +107,8 @@ resource "grafana_synthetic_monitoring_check" "grafana" { ] alert_sensitivity = "high" + frequency = 120 * 1000 # 2 minutes + settings { http { ip_version = "Any" @@ -123,6 +127,8 @@ resource "grafana_synthetic_monitoring_check" "whoami" { ] alert_sensitivity = "medium" + frequency = 120 * 1000 # 2 minutes + settings { http { ip_version = "Any"