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
1
vote
1 answer

When starting flower, I get the following: "dbm.error: db type is dbm.gnu, but the module is not available"

I am currently trying to setup a Python monitoring tool, called Flower, to check whether tasks are being successfully processed. Currently this is my setup is as follows: ubuntu 18.04.2 LTS (GNU/Linux 4.15.0-1044-aws x86_64) python 3.6.7 celery…
lollerskates
  • 964
  • 1
  • 11
  • 28
1
vote
1 answer

celery flower does not show previously run tasks after restart

I am using celery with django and using flower to inspect tasks. I am using rabbitmq as broker. It all works fine but after I restart flower, the previously listed states of task is lost and I see 0 entries in flower. I am running flower with…
Divick
  • 1,213
  • 1
  • 20
  • 44
1
vote
0 answers

Issues in running Airflow as cluster with Celery executors

I am trying to setup Airflow as a cluster. Celery executor is unable to connect to rabbitmq while executing jobs Here are the configurations: Machine 1: webserver and scheduler Machine 2: webserver Machine 3: worker Machine 4: Rabbitmq Airflow…
blueberry
  • 325
  • 2
  • 8
1
vote
0 answers

Flower displaying tasks as received even if succeeded

I have a celery task as follows @celery_app_site24x7.task(queue='site24x7') def createWebsiteMonitoring(**kwargs): """ Celery Task to create or update website Moniroting """ time.sleep(100) site24x7Instance =…
Kheshav Sewnundun
  • 1,236
  • 15
  • 37
1
vote
1 answer

Controlling and querying tasks in Celery

I have been playing/working with Celery for quite some time now, and as a "Please run this task and retry it a few times if it fails, send me an email if it fails for than 10 times" tool it's pretty awesome. It does exactly that. The problem is that…
alexandernst
  • 14,352
  • 22
  • 97
  • 197
1
vote
1 answer

Flower - Celery async task monitoring tool - On Flask/Docker web API

Having trouble running Flower to monitor the celery async tasks that are running on my docker-deployed flask app. I've tried everything but the documentation on getting flower running in a docker deployed environment is pretty sparse & I'm still…
Tyrel Kostyk
  • 506
  • 1
  • 5
  • 11
1
vote
0 answers

Celery, Flower, Redis results

I am using recent versions of Celery and Flower and Redis, but I cannot understand what is happening. I get all the results to work and the data is coming back correctly, but when I view the Celery Tasks with Flower, I see all the tasks and the…
mattjvincent
  • 868
  • 2
  • 11
  • 28
1
vote
1 answer

Monitoring SQS+Celery

Is where some flower analog which work with sqs+celery somehow? I found out that in current celery version sqs doesnt support celery events. Maybe where is some other way to get information about how many tasks success, how many crashed etc. My…
Vova
  • 580
  • 3
  • 7
  • 20
1
vote
1 answer

Celery - Flower service in Cent/7 doesn't show data after a restart

My service is as below : [Service] User=vagrant Group=vagrant WorkingDirectory=/home/vagrant/ ExecStart=/usr/bin/celery -A tasks /usr/bin/flower --port=5000 --basic_auth=sun:flower --persistent=true…
Farhan
  • 505
  • 5
  • 16
1
vote
1 answer

Celery with dynamic workers

I am putting together a Celery based data ingestion pipeline. One thing I do not see anywhere in the documentation is how to build a flow where workers are only running when there is work to be done. (seems like a major flaw in the design of Celery…
chasez0r
  • 544
  • 5
  • 18
1
vote
2 answers

Flower doesn't show task events

Here I find how to send event to Flower. Next, I try to use it in my code like in github issue. My version: @celery.task() def add(): try: ... except Exception as exc: add.send_event('task-failed', exception=str(exc)) In…
v144
  • 23
  • 5
1
vote
1 answer

Celery flower Persistent data not restored

Environment: Python: 3.4 Celery: 4.1.0 Flower: 0.9.0 Centos: 7.0 --persistent flag is used. Celery version v4.1.0. If I create a couple of tasks, they run as expected. After I send a SIGINT: [D 150923 14:43:09 events:96] Saving state to…
Dave
  • 11
  • 3
1
vote
0 answers

when using flower to monitor celery workers, how should I know where the worker is deployed?

in flower I found some workers that I don't know where it located, because I need to update the worker, for the unknown ones, I can remove it from consuming . Is there any way that I can find where the worker was deployed? I guess some other…
lestergyl
  • 41
  • 4
1
vote
1 answer

celery seems to sleep and not working

I am using celery and flower to perform a periodic task. The problem is that sometimes the tasks are not performed at the determined time and when I restart celery in the shell, the delayed tasks starts to be done. Do you know what is the problem…
Shayan
  • 125
  • 2
  • 13
1
vote
1 answer

I cannot launch Flower monitor server for Flask/Celery simple project

I have a simple Flask/Celery project based on this tutorial. The folder tree is the following: ctest\ - templates\ - index.html - app.py - __init__.py The index.html file is :
Kostas Demiris
  • 3,415
  • 8
  • 47
  • 85