gitextract_3ow7j80i/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ ├── dependabot.yml │ └── workflows/ │ ├── build.yml │ └── docker.yml ├── .gitignore ├── .pylintrc ├── .readthedocs.yaml ├── CONTRIBUTORS ├── Dockerfile ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docker-compose.yml ├── docs/ │ ├── Makefile │ ├── _static/ │ │ └── .keep │ ├── _templates/ │ │ ├── localtoc.html │ │ ├── page.html │ │ ├── sidebarintro.html │ │ └── sidebarlogo.html │ ├── _theme/ │ │ └── celery/ │ │ ├── static/ │ │ │ └── celery.css_t │ │ └── theme.conf │ ├── api.ipynb │ ├── api.rst │ ├── auth.rst │ ├── conf.py │ ├── config.rst │ ├── features.rst │ ├── index.rst │ ├── install.rst │ ├── man.rst │ ├── prometheus-integration.rst │ ├── reverse-proxy.rst │ ├── tasks.py │ └── tasks_filter.rst ├── examples/ │ ├── celery-monitoring-grafana-dashboard.json │ ├── celeryconfig.py │ ├── nginx.conf │ ├── prometheus-alerts.yaml │ ├── pycharm-configurations/ │ │ ├── Grafana.run.xml │ │ ├── Prometheus.run.xml │ │ └── Redis.run.xml │ └── tasks.py ├── flower/ │ ├── __init__.py │ ├── __main__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── control.py │ │ ├── tasks.py │ │ └── workers.py │ ├── app.py │ ├── command.py │ ├── events.py │ ├── inspector.py │ ├── options.py │ ├── static/ │ │ ├── css/ │ │ │ └── flower.css │ │ ├── js/ │ │ │ └── flower.js │ │ └── swagger.json │ ├── templates/ │ │ ├── 404.html │ │ ├── base.html │ │ ├── broker.html │ │ ├── error.html │ │ ├── navbar.html │ │ ├── task.html │ │ ├── tasks.html │ │ ├── worker.html │ │ └── workers.html │ ├── urls.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── broker.py │ │ ├── search.py │ │ ├── tasks.py │ │ └── template.py │ └── views/ │ ├── __init__.py │ ├── auth.py │ ├── broker.py │ ├── error.py │ ├── monitor.py │ ├── tasks.py │ └── workers.py ├── prometheus.yml ├── requirements/ │ ├── default.txt │ ├── dev.txt │ ├── docs.txt │ └── test.txt ├── scss/ │ ├── build.sh │ └── flower.scss ├── setup.cfg ├── setup.py ├── tests/ │ ├── __init__.py │ ├── call-tasks.sh │ ├── load.py │ ├── run-unit-tests.sh │ └── unit/ │ ├── __init__.py │ ├── __main__.py │ ├── api/ │ │ ├── __init__.py │ │ ├── test_auth.py │ │ ├── test_control.py │ │ ├── test_tasks.py │ │ └── test_workers.py │ ├── test_command.py │ ├── utils/ │ │ ├── __init__.py │ │ ├── test_broker.py │ │ ├── test_search.py │ │ ├── test_template.py │ │ └── test_utils.py │ └── views/ │ ├── __init__.py │ ├── test_auth.py │ ├── test_broker.py │ ├── test_error.py │ ├── test_monitor.py │ ├── test_tasks.py │ ├── test_url_handlers.py │ └── test_workers.py └── tox.ini