9 监控

目录

工作进程

celery -A proj status  # 节点状态

celery -A proj inspect active  # 列出活动的task

celery -A proj inspect scheduled  # 将要运行的任务

flower

基于web的实时监控

pip install flower

celery -A proj flower
celery -A proj flower --port=5555

转载自:https://blog.csdn.net/weixin_34270865/article/details/88241191

You may also like...