flower Questions
1
Solved
Consider this bash session:
$ export DJANGO_SETTINGS_MODULE=web.settings
$ celery status -b redis://redis.businessoptics.dev:6379/1 -t 10
Error: No nodes replied within time constraint.
$ celery s...
1
Solved
I'm running Celery under Docker Compose. I'd like to make Celery's Flower persistent. So I do:
version: '2'
volumes:
[...]
flower_data: {}
[...]
flower:
image: [base code image]
ports:
- "555...
Afroasian asked 10/3, 2016 at 23:32
2
Solved
How can I use an environment variable in a supervisord command?
I tried:
flower --broker=$MYVAR
but it doesn't work (variable is not expanded), so I tried using an inline python script:
command=...
Suicidal asked 7/3, 2014 at 11:22
2
I am using celery to process some tasks. I can see how many are active or scheduled etc, but I am not able to find any way to see the tasks that have failed. Flower does show me the status but only...
1
Am having challanges starting flower using supervisor.
The following command in my development environment works on the console
celery --app=celery_conf.celeryapp flower --conf=flowerconfig
but ...
2
Solved
How is it possible to configure celery to send email alerts when tasks are failing?
For example I want Celery to notify me when more than 3 tasks fail or more than 10 tasks are being retried.
Is ...
2
Solved
I want to use the Flower HTTP API to monitor Celery, but I can't seem to find any documentation of available REST methods, other than the few examples on the README. Can anyone point me in the righ...
© 2022 - 2024 — McMap. All rights reserved.