mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-23 09:58:16 +08:00
free memory should include node_memory_Slab_bytes
This commit is contained in:
parent
51e7231b3d
commit
37ef9a6f5c
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ services:
|
||||||
rules:
|
rules:
|
||||||
- name: Out of memory
|
- name: Out of memory
|
||||||
description: Node memory is filling up (< 10% left)
|
description: Node memory is filling up (< 10% left)
|
||||||
query: '(node_memory_MemFree_bytes + node_memory_Cached_bytes + node_memory_Buffers_bytes) / node_memory_MemTotal_bytes * 100 < 10'
|
query: 'node_memory_MemAvailable_bytes / node_memory_MemTotal_bytes * 100 < 10'
|
||||||
severity: warning
|
severity: warning
|
||||||
- name: Unusual network throughput in
|
- name: Unusual network throughput in
|
||||||
description: Host network interfaces are probably receiving too much data (> 100 MB/s)
|
description: Host network interfaces are probably receiving too much data (> 100 MB/s)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue