Make sure grafana alerts actually notify
This commit is contained in:
parent
ac86cfaab0
commit
6282c13db6
1 changed files with 4 additions and 0 deletions
|
@ -47,6 +47,7 @@ resource "grafana_synthetic_monitoring_check" "vps_ping" {
|
||||||
target = each.value
|
target = each.value
|
||||||
enabled = true
|
enabled = true
|
||||||
probes = local.partial_global_probes
|
probes = local.partial_global_probes
|
||||||
|
alert_sensitivity = "medium"
|
||||||
|
|
||||||
frequency = 120 * 1000 # 2 minutes
|
frequency = 120 * 1000 # 2 minutes
|
||||||
|
|
||||||
|
@ -64,6 +65,7 @@ resource "grafana_synthetic_monitoring_check" "personal_website" {
|
||||||
target = "https://theorangeone.net/.health/"
|
target = "https://theorangeone.net/.health/"
|
||||||
enabled = true
|
enabled = true
|
||||||
probes = local.global_probes
|
probes = local.global_probes
|
||||||
|
alert_sensitivity = "high"
|
||||||
|
|
||||||
settings {
|
settings {
|
||||||
http {
|
http {
|
||||||
|
@ -81,6 +83,7 @@ resource "grafana_synthetic_monitoring_check" "grafana" {
|
||||||
probes = [
|
probes = [
|
||||||
data.grafana_synthetic_monitoring_probes.main.probes.London
|
data.grafana_synthetic_monitoring_probes.main.probes.London
|
||||||
]
|
]
|
||||||
|
alert_sensitivity = "high"
|
||||||
|
|
||||||
settings {
|
settings {
|
||||||
http {
|
http {
|
||||||
|
@ -98,6 +101,7 @@ resource "grafana_synthetic_monitoring_check" "whoami" {
|
||||||
probes = [
|
probes = [
|
||||||
data.grafana_synthetic_monitoring_probes.main.probes.London
|
data.grafana_synthetic_monitoring_probes.main.probes.London
|
||||||
]
|
]
|
||||||
|
alert_sensitivity = "medium"
|
||||||
|
|
||||||
settings {
|
settings {
|
||||||
http {
|
http {
|
||||||
|
|
Loading…
Reference in a new issue