工作进程
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
celery -A proj status # 节点状态
celery -A proj inspect active # 列出活动的task
celery -A proj inspect scheduled # 将要运行的任务
基于web的实时监控
pip install flower
celery -A proj flower
celery -A proj flower --port=5555