redis: adding comment for exporter flag

This commit is contained in:
Samuel Berthe 2021-01-19 17:11:40 +01:00
parent 45126a79af
commit 6f76f46eff
No known key found for this signature in database
GPG key ID: 64863511FFBD0E3C

View file

@ -695,12 +695,14 @@ groups:
description: Redis has not been backuped for 24 hours
query: 'time() - redis_rdb_last_save_timestamp_seconds > 60 * 60 * 24'
severity: critical
- name: Redis out of memory (total system memory version)
- name: Redis out of system memory
description: Redis is running out of system memory (> 90%)
query: 'redis_memory_used_bytes / redis_total_system_memory_bytes * 100 > 90'
severity: warning
for: 2m
- name: Redis out of memory (maxmemory version)
comments: |
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'
severity: warning