mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 17:07:24 +08:00
Fix JVM "JVM memory filling up" alert
This commit is contained in:
parent
f686698f68
commit
0add93363f
1 changed files with 1 additions and 1 deletions
|
|
@ -1050,7 +1050,7 @@ groups:
|
|||
rules:
|
||||
- name: JVM memory filling up
|
||||
description: JVM memory is filling up (> 80%)
|
||||
query: 'jvm_memory_bytes_used / jvm_memory_bytes_max{area="heap"} > 0.8'
|
||||
query: '(jvm_memory_used_bytes{area="heap"} / jvm_memory_max_bytes{area="heap"}) * 100 > 80'
|
||||
severity: warning
|
||||
|
||||
- name: Sidekiq
|
||||
|
|
|
|||
Loading…
Reference in a new issue