flower Questions

2

Solved

I'm using celery with redis backend. i am passing CELERY_RESULT_BACKEND with the correct redis url and also the broker url to the Celery app config. I start flower by giving the path to my Celery...
Roobbie asked 14/1, 2016 at 17:30

8

Solved

I am looking to use Flower (https://github.com/mher/flower) to monitor my Celery tasks in place of the django-admin as reccomended in their docs (http://docs.celeryproject.org/en/latest/userguide/m...
Midgard asked 30/10, 2013 at 17:13

2

Solved

I have installed celery and RabitMQ and flower. I am able to browse to the flower port. I have the following simple worker that I can attach to celery and call from a python program: # -*- coding:...
Sidelight asked 13/12, 2015 at 1:34

2

Solved

I'm trying to build a Docker file. It goes all well up until the end, when I get the error message: ERROR: for flower Cannot start service flower: OCI runtime create failed: container_linux.go:380...
Forgather asked 6/7, 2021 at 9:29

5

Solved

When I run the command flower -A main --port=5555 Flower doesn't work, the error is: > ImportError: cannot import name 'Command' from 'celery.bin.base' Any ideas? Main is a Django Project
Alphabetical asked 3/10, 2020 at 2:1

2

I use flower to monitor my rabbitmq queues, I am not able to understand how load average is calculated, if someone can explain then that would be of great help. I've a quad core processor . Thank Y...
Venturous asked 12/5, 2016 at 15:1

2

Solved

I've been using flower locally and it seems easy enough to setup and run, but I can't see how I would set it up in a production environment. In particular, how can I add authentication and how wou...
Lindyline asked 10/10, 2013 at 15:44

1

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/...
Brakesman asked 9/8, 2019 at 18:37

2

Solved

My supervisor configuration file environment=USER=%(ENV_FLOWER_USER_NAME),PASS=%(ENV_FLOWER_PASSWORD) command=/usr/local/opt/python/bin/flower --basic_auth=%(ENV_USER}:%(ENV_PASS) When I start s...
Spadefish asked 9/2, 2015 at 13:44

3

Solved

I am trying to use django + celery + rabbitmq + flower, but after i downloaded flower using pip3: Collecting flower Using cached flower-0.9.5-py2.py3-none-any.whl (459 kB) Requirement already sati...
Malawi asked 26/9, 2020 at 8:45

2

Solved

I have a predefined celery task in my code, say my_proj.tasks.my_celery_task I want to activate the task via the command line/HTTP request (not via my application). I searched the documents (saw ...
Onestep asked 3/11, 2014 at 8:10

4

In development mode(local), it is really easy to access flower page (http://localhost:5555) But in production mode, it is difficult to access flower page. I'd like to access flower dashboard pag...
Airlee asked 20/12, 2016 at 11:15

1

We are using Flower to visualize tasks and workers in Celery. The problem is that we use Amazon autoscaling to spawn new workers. Hence, old workers terminate one day and new workers are spawned th...
Arabist asked 7/7, 2015 at 7:53

2

I am running celery on two servers with one redis as a broker. Celery start command looks like following: celery multi start 2 -A app_name Flower start command: celery flower -A app_name --add...
Distrust asked 23/8, 2016 at 17:56

2

Currently, I create a Celery worker + Flower monitoring solution based on https://github.com/itsrifat/flask-celery-docker-scale Celery worker and Flower monitoring both run in a same directory fl...
Cereal asked 4/2, 2018 at 18:34

2

I am running flower by the command: celery flower --broker=amqp://<username>:<password>@localhost:5672/<virtualhostname> --broker_api=http://<username>:<password>@loc...
Dishwater asked 10/8, 2018 at 11:34

2

Solved

I recently installed flower 0.8.4, I created an snapshot in Digital Ocean and then launch a new server using this snapshot. Now flower is still showing the name of the old worker. How can I delete ...
Semicolon asked 18/4, 2016 at 4:48

2

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 u...
Blida asked 11/3, 2016 at 0:14

2

Solved

Im running celery with a redis backend. I want to run celery flower as a daemon on centos 6.2. I understand flower is a Tornado application , so I should use a process to run a tornado application...
Tiertza asked 27/11, 2012 at 7:6

1

Is it possible to add flower to the celery daemon? Below is my celery config file, I tried added flower config to the CELERYD_OPTS variable but it has failed. or is there another command I can ad...
Bogard asked 21/9, 2017 at 16:34

0

I have many workers running on different EC2 instances and one common Redis [Elasticache] instance they use as broker. I have set up Flower inside Vagrant [along with celery and redis] and I want...
Gwennie asked 15/5, 2017 at 14:19

2

I'm trying to configure Flower, Celery's monitoring tool. This works ok overall, but I cannot see anything under the broker tab. I can see stuff under "workers", 'tasks' and 'monitor' and the graph...
Krieger asked 29/10, 2014 at 18:4

2

I am building a framework for executing tasks on top of Celery framework. I would like to see the list of recently executed tasks (for the recent 2-7 days). Looking on the API I can find app.back...
Volcanic asked 1/3, 2016 at 15:32

0

I am using Celery and Flower. When I visit the 'Tasks' tab in Flower, I can see that my tasks are being registered and I can even see "Success" tag in the "State" column and everything. However, o...
Finke asked 23/6, 2016 at 11:8

1

I have some fairly busy celery queues, but not sure which tasks are the problematic ones. Is there a way to aggregate results to figure out which tasks are taking a long time? I have 10-20 workers ...
Germanophobe asked 30/5, 2016 at 22:22

© 2022 - 2024 — McMap. All rights reserved.