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...
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...
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:...
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...
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
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...
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...
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...
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...
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...
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...
2
I am running flower by the command:
celery flower --broker=amqp://<username>:<password>@localhost:5672/<virtualhostname> --broker_api=http://<username>:<password>@loc...
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...
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...
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...
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...
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...
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
1 Next >
© 2022 - 2024 — McMap. All rights reserved.