dramatiq_dashboard
dramatiq_dashboard copied to clipboard
A dashboard for dramatiq, specific to its Redis broker.
If defined max_retries=0, section TRACEBACK not displayed ~~~ @dramatiq.actor(max_retries=0) def worker(): raise ValueError('A very specific bad thing happened') ~~~
When using the dashboard the url `localhost:8070/drama` would return a `Not found` because it was picked up by `dramatiq`, but not handled. This PR allows usage of both `localhost:8070/drama` and...
I'm trying to do something like this in a django app: At the end of **`myapp/urls.py:`** ```python3 if settings.ENABLE_DRAMATIQ_DASHBOARD: import dramatiq from django_wsgi.embedded_wsgi import call_wsgi_app from dramatiq_dashboard import DashboardApp app...
It would be very useful if there were buttons, to re-queue or delete all items on a specific failed queue.
~~~ Dramatiq 1.9.0 Redis server v=5.0.7, redis-cli 5.0.7 Ubuntu 18.04.4 LTS Python 3.6.9 ~~~ After requesting the URL http://domain.name/ddb/, the CPU consumption increases to 100%, the size of used RAM...
Hello, I needed a way to add this to my docker-compose stack so I created this repo. If you think it would be useful for others, here's a PR. James
# Issues Thank you very much for your work. I am using dramatiq_dashboard,it is very good,but it is very difficult to understand that worker name is a bunch of meaningless...