You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Changes have been detected in Redis replica connection. This can occur when replica nodes lose connection to the master and reconnect (a.k.a flapping)
- alert: RedisClusterFlappingexpr: changes(redis_connected_slaves[5m]) > 2for: 5mlabels:
severity: criticalannotations:
summary: "Redis cluster flapping (instance {{ $labels.instance }})"description: "Changes have been detected in Redis replica connection. This can occur when replica nodes lose connection to the master and reconnect (a.k.a flapping).\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
Redis missing backup
Redis has not been backuped for 24 hours
- alert: RedisMissingBackupexpr: time() - redis_rdb_last_save_timestamp_seconds > 60 * 60 * 24for: 5mlabels:
severity: criticalannotations:
summary: "Redis missing backup (instance {{ $labels.instance }})"description: "Redis has not been backuped for 24 hours\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
Redis out of memory
Redis is running out of memory (> 90%)
- alert: RedisOutOfMemoryexpr: redis_memory_used_bytes / redis_total_system_memory_bytes * 100 > 90for: 5mlabels:
severity: warningannotations:
summary: "Redis out of memory (instance {{ $labels.instance }})"description: "Redis is running out of memory (> 90%)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
Redis too many connections
Redis instance has too many connections
- alert: RedisTooManyConnectionsexpr: redis_connected_clients > 100for: 5mlabels:
severity: warningannotations:
summary: "Redis too many connections (instance {{ $labels.instance }})"description: "Redis instance has too many connections\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
Redis not enough connections
Redis instance should have more connections (> 5)
- alert: RedisNotEnoughConnectionsexpr: redis_connected_clients < 5for: 5mlabels:
severity: warningannotations:
summary: "Redis not enough connections (instance {{ $labels.instance }})"description: "Redis instance should have more connections (> 5)\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"
Redis rejected connections
Some connections to Redis has been rejected
- alert: RedisRejectedConnectionsexpr: increase(redis_rejected_connections_total[1m]) > 0for: 5mlabels:
severity: criticalannotations:
summary: "Redis rejected connections (instance {{ $labels.instance }})"description: "Some connections to Redis has been rejected\n VALUE = {{ $value }}\n LABELS: {{ $labels }}"