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
2
votes
0 answers

Celery - rename pidbox and celery queues?

Our DevOps team has specific naming requirements for queues in rabbit, I have done some searching and came across the below, which I thought may have worked, however it only names the one default queue and it puts the name before .pidbox. all the…
AlexW
  • 2,843
  • 12
  • 74
  • 156
2
votes
2 answers

I want to delete all flower celery history/logs but it does not work

I do not know how to delete my task related data for flower. I need to clear my Flower data for debugging purposes but I do not know how to do it. My flower and celery is running on a docker and even when I delete the dockers and their…
Maxime Deuse
  • 313
  • 11
  • 13
2
votes
1 answer

'Redis with SSL' broker is not supported in Flower broker tab

We are using Flower to monitor Celery tasks with Redis as a broker in our project. When we configured Redis with SSL as a broker, in the broker tab we can see the next message: 'redis' broker is not supported We tried to (and successfully) connect…
Pablo G
  • 21
  • 3
2
votes
2 answers

Trigger Celery task in a RESTful Route

I would like to set a route for my Celery tasks and monitor them. This is the code I have in my flask app running at localhost:5000 background.py Task: @celery.task(queue='cache') def cache_user_tracks_with_features(): return {'status': 'Task…
8-Bit Borges
  • 9,643
  • 29
  • 101
  • 198
2
votes
1 answer

A a means of viewing task-specific logs via Flower (or some other similar interface)

I have an application/website which I use to run tests. Whenever I run a test, a Celery task is created, and this task goes through the process of running the actual test. The test contacts a 3rd party server, so there are quite a few reasons why…
AmagicalFishy
  • 1,249
  • 1
  • 12
  • 36
2
votes
1 answer

Advanced task formatting in Flower (Celery monitoring)

I use Flower to monitor my Celery tasks. I'm trying to change the way tasks are displayed (under the Tasks tab) in order for the list to look a bit more "organized". For example, displaying instead of [1, 2, 3, .... Unfortunately,…
Rémi Héneault
  • 383
  • 3
  • 12
2
votes
1 answer

flower cannot monitor custom queue

After setting up celery, Redis and flower I made some basic tests, everything worked fine using the default celery queue. After that I created some custom queues and then flower couldn't monitor these custom queues. I think flower continues to…
Panagiotis Simakis
  • 1,245
  • 1
  • 18
  • 45
2
votes
1 answer

how to run celery flower with config file?

For my project. I want to use flower config file to instead of use command line options. But I write a file named flowerconfig.py, like follows: # RabbitMQ management broker_api = 'http://user:passwd@localhost:15672/api/' # Enable debug…
IkarosKun
  • 463
  • 3
  • 15
2
votes
1 answer

Why flower's HTTP API get task info not work?

I have a working celery flower project. Now I want some celery task details using flower http api,but when I make a request at flower http api on http://localhost:5555/api/task/info/task_id it return 500 error? Everything is all right in flower…
Li Ziming
  • 385
  • 2
  • 5
  • 17
2
votes
1 answer

Sending inputs and image processing jobs to multiple machines using Celery and Python

Recently I have been playing with celery and flower (for dashboard and task visualisation on a single machine) in Ubuntu using python 3.x. First I have installed rabbitmq-server, radis, celery and flower. Then I have created a script called tasks.py…
valentin
  • 1,103
  • 2
  • 16
  • 36
2
votes
1 answer

how to start celery flower as as daemon in RHEL?

Im trying to run flower as daemon. My flower.service file read as follows: [Unit] Description=Flower Service After=network.target [Service] Type=forking User=maas Group=maas PermissionsStartOnly=true …
Datta
  • 87
  • 1
  • 17
2
votes
1 answer

Celery flower doesn't work under supervisor managment

I have Ubuntu 14.04.4 LTS running as a vagrant environment under virtualbox. In this box I have this configuration: supervisor 3.0b2 python 3.4 under virtualenvironment celery 3.1.23 flower 0.9.1 A flower configuration under supervisor…
Roman Storozhenko
  • 369
  • 1
  • 3
  • 16
2
votes
1 answer

Subclass doesn't display Processing

I'm working on an assignment that needs to create a base class Tree, with subclass Flower. But I don't know where I get it wrong, the flowers don't appear on the tree when mouse is pressed, only the tree appears. Here is my code so far, Tree…
Tracey
  • 33
  • 1
  • 4
2
votes
2 answers

Flush Flower database occasionally and/or exit gracefully from Docker?

I'm running Celery Flower in Docker (see this question for details). The command ends up being: celery -A proj flower --persistent=True --db=/flower/flower I've got a persistent volume all set up on /flower. However, it looks like Flower never…
Claudiu
  • 224,032
  • 165
  • 485
  • 680
2
votes
1 answer

Celery Flower not found js files

I just started to use Flower for Celery task monitoring. Everything is working well on locally. But when I deploy my code to server, and try to open flower page I received the following error [pid: 6442|app: 0|req: 20/20] 46.19.100.110 () {44 vars…
gegham
  • 35
  • 1
  • 6