Reduce frequency on some monitoring probes

The frequency is per-region, so it's still quite regular
This commit is contained in:
Jake Howard 2023-09-06 19:22:02 +01:00
parent bdf48295a6
commit a1bed2ca9f
Signed by: jake
GPG Key ID: 57AFB45680EDD477
1 changed files with 6 additions and 0 deletions

View File

@ -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"