Reduce frequency on some monitoring probes
The frequency is per-region, so it's still quite regular
This commit is contained in:
parent
bdf48295a6
commit
a1bed2ca9f
1 changed files with 6 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue