Celery flower for several applications
If there is a need to monitor several applications, there are two ways:
- run celery flower instance for each application
celery flower --app app1.celeryapp --port=5555
celery flower --app app2.celeryapp --port=5556
- run celery flower with broker option, there will be less options to control tasks
celery flower --broker=redis://redis/0