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

How does Flower determine if a Celery worker is online/offline?

Within celery, I see sometimes that the worker is offline. I run Flower in one Docker container and the Celery worker in another one. I use a RabbitMQ broker. I see that the worker jumps between offline <-> online quite often. What does it mean that…
Martin Thoma
  • 124,992
  • 159
  • 614
  • 958
1
vote
1 answer

celery - how to conceal the logging of arguments

I have the following celery task: @pp.task(name="my dummy task") def dummy_task(args, my_ids): print ("run background task") //long process here return {'status':'ok} The thing is that the my_ids carries a lot of information and when I…
ProcolHarum
  • 721
  • 3
  • 17
1
vote
1 answer

How to read celery results from redis result backend

We have a (django) celery setup with one redis db as broker and another as result backend. When inspecting the keys in the result backend redis, we see 485K keys of type string and 7 keys of type none. An example of a key is:…
sunless
  • 597
  • 5
  • 19
1
vote
0 answers

Flower and http-proxy-middleware

[EDIT] I was able to fix the CSS errors described below with the following in my https_server.js: function flowerGetMethods(app, endpoint, certified) { if (certified) { var options = { logLevel: 'debug', target:…
Connor
  • 545
  • 4
  • 20
1
vote
0 answers

How to set monitor time range in celery Flower monitor

We use Flower for celery monitoring. But how to set the monitor range for let's say a week? Currently looks like it reloads each time on refresh. UPDATE: image "mher/flower:0.9.5"
orkenstein
  • 2,810
  • 3
  • 24
  • 45
1
vote
1 answer

Setting Timezone for Celery Flower Displays Wrong Time

I'm running a celery worker and flower in two separate containers using docker. The host machine's timezone is set to America/Denver. The celery worker has the following timezone-related configurations: app = Celery('app',…
Jade Cowan
  • 2,543
  • 1
  • 18
  • 32
1
vote
0 answers

How to change Celery's task name during runtime

I would like to name my tasks based on the arguments they are receiving. Below example is working, but the task name is empty(at least Flower is not displaying it). I would like to modify it so the task name is based on user name. @app.task def…
ziemowit141
  • 465
  • 3
  • 18
1
vote
1 answer

Celery Flower returning 500s on Broker Stats with Redis and SSL

I just installed celery flower. It is working great for showing me real-time tasks, which queue they were processed on, cpu usage, and the processing time. I also want to have access to the broker page so I can monitor queue lengths. The issue I am…
hancho
  • 1,345
  • 3
  • 19
  • 39
1
vote
0 answers

Flower ETL status success but result is false

Need help with Open Semantic Search Server Edition. I cannot upload and index any files from a folder to make it visible in search engine. Direct Import/upload for excel file is working though. I though it is just a syntax problem but I tried a few…
J.L
  • 17
  • 5
1
vote
1 answer

What does active column represent in celery flower

Can anyone guide me that what does active column is representing here exactly? My current understanding is that for example for celery@worker45, it is showing that 5 threads of this worker are active at the moment. See screenshot for reference Also,…
Sajjad Zaidi
  • 159
  • 1
  • 10
1
vote
1 answer

Does Airflow support connection over TLS for broker url?

Currently I am trying to use Apache Airflow with Celery executor. For this I have Redis service from IBM cloud. This service has the TLS connection type which means it has the redis protocol as rediss://. Side not: I am using puckel's airflow…
1
vote
1 answer

How do I get count of records using XQuery

I have "Library.xml" file containing book records as DBMS Korth Pragati 500
1
vote
1 answer

zerok/celery-prometheus-exporter gives celery_workers count as 0

I could see flower is showing worker count as 1, But in exporter metrics, i see a worker count as zero. i am following the below url https://github.com/zerok/celery-prometheus-exporter here is my docker-compose and prometheus.yml…
1
vote
0 answers

How to add celery worker in flower ui for airflow?

I running airflow by celery executer.I change the airflow config. And i stuck in this.please help.
1
vote
1 answer

Flower doesn't display complete result string

I use flower to monitoring celery functions but if the result string is long, flower doesn't display all of it. When I send request with python to flower, the result is the same, result is still not complete. {'Name': {21: {'state': 'open',…
quywter
  • 57
  • 6