Skip to content

Commit e1aeaa3

Browse files
authored
docs: fix bad example (#296)
1 parent 5f737ea commit e1aeaa3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

website/docs/r/monitor_alert_v2_prometheus.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ Creates a Sysdig Monitor Prometheus Alert. The notification is triggered on the
1818
resource "sysdig_monitor_alert_v2_prometheus" "sample" {
1919
name = "Elasticsearch JVM heap usage"
2020
description = "Elasticsearch JVM heap used over attention threshold"
21-
severity = high
21+
severity = "high"
2222
query = "(elasticsearch_jvm_memory_used_bytes{area=\"heap\"} / elasticsearch_jvm_memory_max_bytes{area=\"heap\"}) * 100 > 80"
2323
trigger_after_minutes = 10
2424
notification_channels {
25-
id = <your-notification-channel-id>
25+
id = 1234
2626
renotify_every_minutes = 5
2727
}
2828
}

0 commit comments

Comments
 (0)