Monitoring Celery

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/.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset