mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 08:57:19 +08:00
fix memory metric name
This commit is contained in:
parent
d889a9594f
commit
51eedcf616
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ services:
|
|||
rules:
|
||||
- name: Out of memory
|
||||
description: Node memory is filling up (< 10% left)
|
||||
query: '(node_memory_MemFree + node_memory_Cached + node_memory_Buffers) / node_memory_MemTotal * 100 < 10'
|
||||
query: '(node_memory_MemFree_bytes + node_memory_Cached_bytes + node_memory_Buffers_bytes) / node_memory_MemTotal_bytes * 100 < 10'
|
||||
severity: warning
|
||||
- name: Unusual network throughput in
|
||||
description: Host network interfaces are probably receiving too much data (> 100 MB/s)
|
||||
|
|
|
|||
Loading…
Reference in a new issue