redis-cli
to check the length of the queue to understand the scale of the build-up. For example, if your queue is named myQueue
, you can run:redis-cli llen myQueue
SLOWLOG GET
command to find any slow operations that might be causing the build-up:redis-cli slowlog get
top
for CPU and free -m
for memory (Linux). For Redis-specific metrics, use:redis-cli info stats
redis-cli info memory
redis-cli del myQueue
Let Dr. Droid create custom investigation plans for your infrastructure.
Book Demo