介绍celery flower 任务状态监控工具API的使用.参考地址

  1. workers清单
    curl http://localhost:5555/api/workers

  2. tasks 清单
    curl http://localhost:5555/api/tasks

  3. task类型
    curl http://localhost:5555/api/task/types

  4. 查看一个task详情
    curl http://localhost:5555/api/task/info/e562920f-f81e-4620-80f6-348e6f0ebe4f 其中e562920f-f81e-4620-80f6-348e6f0ebe4f为task-id.

python代码学习地址