mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 00:47:18 +08:00
Elasticsearch Heap Usage warning (>80%)
This commit is contained in:
parent
52ce326823
commit
eab8b1a86d
1 changed files with 4 additions and 0 deletions
|
|
@ -220,6 +220,10 @@ services:
|
|||
description: 'The heap usage is over 90% for 5m - {{ $value | printf "%.2f"}}%'
|
||||
query: '(elasticsearch_jvm_memory_used_bytes{area="heap"} / elasticsearch_jvm_memory_max_bytes{area="heap"}) * 100 > 90'
|
||||
severity: critical
|
||||
- name: Elastic Heap Usage warning
|
||||
description: 'The heap usage is over 80% for 5m - {{ $value | printf "%.2f"}}%'
|
||||
query: '(elasticsearch_jvm_memory_used_bytes{area="heap"} / elasticsearch_jvm_memory_max_bytes{area="heap"}) * 100 > 80'
|
||||
severity: warning
|
||||
- name: Elastic Cluster RED
|
||||
description: Elastic Cluster RED status
|
||||
query: 'elasticsearch_cluster_health_status{color="red"} == 1'
|
||||
|
|
|
|||
Loading…
Reference in a new issue