redis.persistence.aof_enabled
AOF logging activated flagDimensions:None
Summary
Boolean flag (0 or 1) indicating whether AOF persistence is enabled. When enabled, Redis logs every write command to disk, providing durability with minimal data loss (typically <1 second with appendfsync everysec). Disabled AOF may indicate intentional cache-only mode or misconfiguration. For durability-sensitive use cases, verify this is enabled and monitor AOF metrics for write failures.
Interface Metrics (3)
Sources
Related Insights (1)
AOF Persistence Latency from Synchronous Disk Writeswarning
When AOF persistence is enabled with appendfsync always or everysec, slow disk I/O can cause write latency spikes. redis.persistence.aof_last_rewrite_time_sec increasing significantly indicates AOF file growth without rewrite, amplifying disk I/O overhead.
▸