rq-dashboard
rq-dashboard is a general purpose, lightweight, web interface to monitor your RQ queues, jobs, and workers in realtime.
What it is and what it does
rq-dashboard is a lightweight web interface built on Flask that lets you monitor RQ (Redis Queue) jobs, workers, and queues in real time. It runs as either a standalone CLI service listening on port 9181 by default, or as a Flask blueprint you can embed in your own application. The dashboard connects to Redis via configurable URLs and displays queue status, job details, and worker health.
The package depends on rq, Flask, redis, arrow (for time formatting), and redis-sentinel-url (for Sentinel support). It supports deployment as a Docker container, behind reverse proxies like NGINX, or as a systemd service. Configuration is handled via command-line flags or environment variables prefixed with RQ_DASHBOARD_. The project is actively maintained but remains in beta, so you may encounter breaking changes or incomplete features.
Use it for:
- Monitor background job progress and status in development or production RQ deployments without writing custom monitoring code.
- Inspect failed or stuck jobs in Redis queues and manually trigger cleanup or retries from the web UI.
- Run the dashboard as an isolated Docker service to keep monitoring dependencies separate from your main application stack.
- Integrate queue monitoring into an existing Flask application by mounting the dashboard blueprint at a custom URL prefix.
- Debug worker availability and job queue depth in real time during development or incident response.
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
A Flask-based web dashboard for monitoring RQ job queues, workers, and jobs in real time, deployable as a standalone service or integrated into an existing Flask application.
Yes, if you use RQ for background jobs and want a ready-made monitoring interface. Install friction is low and maintenance is active. The beta status means you should test it in a non-critical environment first and be prepared for potential API changes, but the project has been around since 2012 and is actively developed. No known security vulnerabilities.
Install
rq-dashboard on PyPI
pip
pip install rq-dashboarduv
uv add rq-dashboardpoetry
poetry add rq-dashboardInstalling rq-dashboard
Before you install
Low friction install with a pure-Python wheel. Active maintenance with a recent release 43 days ago and steady repository activity. Currently in beta stage according to the project.
License in practice
BSD license (permissive) places no restrictions on use or redistribution in your own projects.
Quickstart
pip install rq-dashboard
# Standalone: run the CLI
rq-dashboard
# Or integrate into Flask:
from flask import Flask
import rq_dashboard
app = Flask(__name__)
app.config.from_object(rq_dashboard.default_settings)
rq_dashboard.web.setup_rq_connection(app)
app.register_blueprint(rq_dashboard.blueprint, url_prefix="/rq")
Verify before relying
- Specific Python version requirements (classifiers list 3.5–3.7 but requires_python is unspecified)
- Whether the beta status affects production readiness or indicates active breaking changes
Package facts
| License | BSD (permissive) |
| Python support | not specified |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 5 — rq, Flask, redis, arrow, redis-sentinel-url |
| Maintenance | actively maintained — 43 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 434,186/month — #6,694 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: rq_dashboard-0.9.0-py2.py3-none-any.whl
Tags
More Scientific/Engineering packages
NumPy provides an N-dimensional array object…
permissive · top 100 on PyPI
pandaspandas provides fast, flexible data structures…
permissive · top 100 on PyPI
scipyscipy provides numerical algorithms for…
permissive · top 100 on PyPI
scikit-learnscikit-learn provides a comprehensive Python…
permissive · top 1,000 on PyPI
dilldill extends Python's pickle module to…
permissive · top 1,000 on PyPI
multiprocessMultiprocess is an enhanced fork of Python's…
permissive · top 1,000 on PyPI
rqRQ is a Python library for queueing jobs and…
permissive · top 5,000 on PyPI
rq-schedulerAdds job scheduling capabilities to RQ (Redis…
permissive · top 15,000 on PyPI
django-rqDjango-RQ integrates RQ (Redis Queue) with…
permissive · top 5,000 on PyPI
saqSAQ is an async job queue framework that runs…
permissive · top 15,000 on PyPI
arqarq provides a job queue system for Python that…
permissive · top 5,000 on PyPI
bullmqBullMQ for Python is a Redis-backed job queue…
permissive · top 5,000 on PyPI
faktoryA Python worker and client library for Faktory,…
permissive · top 15,000 on PyPI
taskiq-redisAdds Redis-based message brokers and result…
permissive · top 5,000 on PyPI
redis-simple-mqA lightweight message queue built on Redis that…
permissive · top 15,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI