mirror of
https://github.com/samber/awesome-prometheus-alerts.git
synced 2026-06-21 17:07:24 +08:00
RedisOutOfConfiguredMaxmemory: checking if memory limit is set (#410)
This commit is contained in:
parent
b77cb3467c
commit
aad1c4cd95
1 changed files with 1 additions and 1 deletions
|
|
@ -821,7 +821,7 @@ groups:
|
|||
The exporter must be started with --include-system-metrics flag or REDIS_EXPORTER_INCL_SYSTEM_METRICS=true environment variable.
|
||||
- name: Redis out of configured maxmemory
|
||||
description: Redis is running out of configured maxmemory (> 90%)
|
||||
query: "redis_memory_used_bytes / redis_memory_max_bytes * 100 > 90"
|
||||
query: "redis_memory_used_bytes / redis_memory_max_bytes * 100 > 90 and on(instance) redis_memory_max_bytes > 0"
|
||||
severity: warning
|
||||
for: 2m
|
||||
- name: Redis too many connections
|
||||
|
|
|
|||
Loading…
Reference in a new issue