Skip to main content

Log Analysis

Where Redis Logs Are Stored

The Redis configuration file redis.conf determines where logs are written.

logfile /var/log/redis/redis-server.log

If logfile "" is set, Redis logs to stdout (useful for Docker environments).

Redis Log Levels

Redis supports multiple log levels:

LevelDescription
debugVery verbose, for deep debugging
verboseDetailed info, useful for tracing
noticeDefault; normal but important events
warningOnly warnings and errors

Configure via redis.conf: loglevel notice Or dynamically: CONFIG SET loglevel verbose