Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What methods are available in the Flower HTTP API?

Tags:

celery

flower

I want to use the Flower HTTP API to monitor Celery, but I can't seem to find any documentation of available REST methods, other than the few examples on the README. Can anyone point me in the right direction, or is reading the source code the only option?

like image 686
Sarah Cartwright Avatar asked Aug 28 '13 18:08

Sarah Cartwright


2 Answers

All HTTP API methods are documented and available at http://flower.readthedocs.org/en/latest/api.html

like image 62
mher Avatar answered Oct 28 '22 22:10

mher


You can check the urls.py for a list of all methods: https://github.com/mher/flower/blob/master/flower/urls.py

like image 36
DanJ Avatar answered Oct 28 '22 21:10

DanJ