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 file:
docker-compoe.yml
....
celery-exporter:
image: zerok/celery-prometheus-exporter
ports:
- '8888:8888'
and my prometheus.yml
prometheus.yml
.....
- job_name: celery-exporter
static_configs:
- targets: ['celery-exporter:8888']
Let me know if i have to configure anything in airflow.cfg file to enable it.
Thanks in advance!