What methods are available in the Flower HTTP API?

I want to use the Flower HTTP API to monitor Celery, but I cannot find any documentation about the available REST methods, except for a few examples in README. Can someone point me in the right direction or read only the source code?

+4
source share
2 answers

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

+4
source

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

+3
source

Source: https://habr.com/ru/post/1499462/


All Articles