Elasticsearch Heap Usage warning (>80%)

This commit is contained in:
Sofrony Pavel 2019-02-11 16:50:26 +03:00
parent 52ce326823
commit eab8b1a86d
No known key found for this signature in database
GPG key ID: 680D71F08DDA644F

View file

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