May 2018
Beginner to intermediate
526 pages
11h 57m
English
You might want to monitor the asynchronous tasks that are executed. Flower is a web-based tool for monitoring Celery. You can install Flower using this command:
pip install flower==0.9.2
Once installed, you can launch Flower by running the following command from your project directory:
celery -A myshop flower
Open http://localhost:5555/dashboard in your browser. You will be able to see the active Celery workers and asynchronous task statistics:

You can find documentation for Flower at https://flower.readthedocs.io/.
Read now
Unlock full access