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
A CLI tool to monitor Sidekiq queues and processes - like htop for Sidekiq.
Installation
Add to your Gemfile:
gem'sktop'
Or install directly:
gem install sktop
Usage
# Basic usage (auto-refresh every 2 seconds)
sktop
# Connect to a specific Redis instance
sktop -r redis://myhost:6379/1
# Custom refresh interval
sktop -i 5
# Start with a specific view
sktop -w # Workers view
sktop -R # Retries view
sktop -d # Dead jobs view# Display once and exit (no auto-refresh)
sktop -1
sktop -R -1 # Show retries view once and exit
Options
Option
Description
-r, --redis URL
Redis URL (default: redis://localhost:6379/0 or REDIS_URL env var)