# Launch your workers celery worker -E -l INFO -n worker.high -Q high celery worker -E -l INFO -n worker.normal -Q normal celery worker -E -l INFO -n worker.low -Q low # This worker will accept tasks if for example all other high queue workers are busy celery worker -E -l INFO -n worker.whatever # Use FLOWER to monitor your Celery app `https://github.com/mher/flower`, `https://flower.readthedocs.io/` $ pip install flower # Launch the server and open http://localhost:5555 $ flower -A some_project --port=5555 # Or, launch from Celery $ celery flower -A proj --address=127.0.0.1 --port=5555 # Broker URL and other configuration options can be passed through the standard Celery options $ celery flower -A proj --broker=amqp://guest:guest@localhost:5672//