Skip to content

Commit 011ec69

Browse files
authored
Add flower as a dev dependency (#5189)
* Add docs
1 parent 99f116b commit 011ec69

File tree

3 files changed

+117
-1
lines changed

3 files changed

+117
-1
lines changed

Pipfile

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ sqlparse = "*"
6464
[dev-packages]
6565
argh = ">=0.26.2"
6666
astroid = ">=2.3"
67+
flower = "*"
6768
coverage = ">=5.0"
6869
crc-bonfire = "*"
6970
debugpy = ">=1.3.0"

Pipfile.lock

+98-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/devtools.md

+18
Original file line numberDiff line numberDiff line change
@@ -313,3 +313,21 @@ Examples commands and results:
313313
'schema1': {'PG': {'reporting_awscostentrylineitem_daily_summary': 'All data complete for table: reporting_awscostentrylineitem_daily_summary'}, 'TRINO': 'PG data complete so skipping trino query'}},
314314
'schema3': {'PG': {'reporting_awscostentrylineitem_daily_summary': 'All data complete for table: reporting_awscostentrylineitem_daily_summary'}, 'TRINO': 'PG data complete so skipping trino query'}}
315315
```
316+
317+
## Monitoring Celery ##
318+
319+
[Flower] is a tool for monitoring Celery clusters. It provides detailed information about the status of workers and tasks.
320+
321+
Flower is installed with the dev dependencies but it is not run by default. To start Flower, run
322+
323+
```
324+
celery -A koku flower
325+
```
326+
327+
Open http://localhost:5555 to see Celery details.
328+
329+
See the [Flower documentation][flower] for detailed usage information.
330+
331+
332+
333+
[flower]: https://flower.readthedocs.io/en/latest/index.html

0 commit comments

Comments
 (0)