Questions tagged [flower]

Flower is a real-time web based monitor and administration tool for Celery.

From Celery documentation:

Flower is a real-time web based monitor and administration tool for Celery. Being the recommended monitor for Celery, it obsoletes the Django-Admin monitor, celerymon and the ncurses based monitor.

Flower is pronounced like “flow”, but you can also use the botanical version if you prefer.

Features Real-time monitoring using Celery Events Remote Control HTTP API

203 questions
5
votes
1 answer

How to view all graphs in Celery Flower Monitor tab

Am running Celery 3.1.16 with a RabbitMQ 3.4.1 back end and using Flower 0.7.3 on Python3.4 to monitor my celery tasks. I have several tasks running and I can view their results in the task tab of Celery Flower. In the monitor tab, there are 4…
lukik
  • 3,919
  • 6
  • 46
  • 89
5
votes
2 answers

Worker always offline in Celery flower

I have Celery and Flower running on my server and the tasks run just fine and are correctly registered and updated for me to monitor within the Flower UI, however, the worker status is allways Offline no matter if I restart the workers or Flower…
Gerard
  • 9,088
  • 8
  • 37
  • 52
5
votes
1 answer

Correct setup for multiple web sites with nginx, django and celery

Im trying to find some information on the correct way of setting up multiple django sites on a linode (Ubuntu 12.04.3 LTS (GNU/Linux 3.9.3-x86_64-linode33 x86_64) Here is what I have now: Webserver: nginx Every site is contained in a…
Tomas Jacobsen
  • 2,368
  • 6
  • 37
  • 81
5
votes
2 answers

What methods are available in the Flower HTTP API?

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…
Sarah Cartwright
  • 136
  • 1
  • 10
5
votes
1 answer

Monitoring with Celery Flower

Since Celery docs recommends using flower for monitoring, I am trying to get it to work with a hosted RabbitMQ provider (CloudAMQP) celery flower --broker=amqp://username:password@lemur.cloudamqp.com/vhost…
Pratik Mandrekar
  • 9,362
  • 4
  • 45
  • 65
4
votes
1 answer

Python celery flower no monitor tab (no real-time grohics)

How I can see a real-time tasks execution? I'm novice in celery. I'm running celery but don't see a monitor tab http://127.0.0.1:5555/monitor returns "page not found" Here is how I'm starting it Celery in the script if __name__ == '__main__': …
salius
  • 918
  • 1
  • 14
  • 30
4
votes
2 answers

Cannot import name FlowerCommand from flower.command

I have installed apache airflow version 2.1.2 but when I starts the worker then it says that it cannot import name FlowerCommand from flower.command. Operating system centos 7, python version is 3.7.6, apahce-airflow version is 2.1.2, celery version…
4
votes
5 answers

How can I connect Flower to the broker RabbitMQ in docker-compose

How I can connect Flower to RabbitMQ. My celery running tasks do not appear on Flower. Although they are running fine. On the Flower UI, when I click on "broker", I get this error message on the terminal [E 210326 10:53:07 broker:78] RabbitMQ…
Sami Al-Subhi
  • 4,406
  • 9
  • 39
  • 66
4
votes
0 answers

Django + Celery + Flower seems to break RabbitMQ broker

I've working on a fresh headless Debian server (Buster) with a still in dev setup of Django (3.1.6) + Celery (4.4.7) + RabbitMQ (3.7.8) + Flower (0.9.7). (I was running with Celery 5, but downgraded to 4.4.7, because of a bug.) Django, Celery, and…
xtian
  • 2,765
  • 7
  • 38
  • 65
4
votes
0 answers

How do I gracefully shutdown celery's flower?

When I send a SIGTERM, some times flower will die with this exception & its database does not contain the latest tasks. File "/home/devil/envs/celery/lib/python3.6/ site-packages/flower/app.py", line 68, in stop self.events.stop() File…
canadadry
  • 8,115
  • 12
  • 51
  • 68
4
votes
4 answers

running flower behind a reverse proxy

The following is my nginx config: location /flower/ { rewrite /flower/(.*) /$1 break; sub_filter '="/' '="/flower/'; sub_filter_last_modified on; sub_filter_once off; proxy_pass http://localhost:5555/; proxy_set_header…
Adarsh
  • 3,273
  • 3
  • 20
  • 44
4
votes
1 answer

Stop a celery worker processing tasks OR monitor 'unconsumed' tasks in Flower

Suppose all my tasks on a celery queue are hitting a 3rd party API. However, the API has a rate limit, which I am keeping track of (there is a day limit and hourly limit which I need to respect). As soon as I hit the rate limit, I want to pause…
No. Cigar
  • 41
  • 4
4
votes
0 answers

Celery Flower not monitoring jobs

I am running Celery and Flower, with RabbitMQ as a message broker. When I have no running workers and start a task, it sits on the queue until a worker starts. Then, when I start my workers, the task is consumed and executed as expected. However,…
4
votes
1 answer

Deploying Flower to Heroku

I'm following the instructions on https://github.com/jorilallo/celery-flower-heroku to deploy Flower celery monitoring app to Heroku. After configuring and deploying my app I see the following in heroku logs: Traceback (most recent call last): …
zupo
  • 1,556
  • 1
  • 13
  • 17
3
votes
2 answers

How to restart running task and pending task in celery once worker is forcefully shutdown?

Currently i am running task in celery which take 10 to 15 minutes to complete but problem is How do i restart task which currently running in worker and also one which is currently not running but waiting for task to run while i forcefully stopped…
Mad's Man
  • 113
  • 1
  • 9
1 2
3
13 14