Skip to content

Commit

Permalink
Merge branch 'main' into COST-tweak-polling-batch
Browse files Browse the repository at this point in the history
  • Loading branch information
lcouzens authored Jun 27, 2024
2 parents 51e18dc + 011ec69 commit 73399b1
Show file tree
Hide file tree
Showing 3 changed files with 117 additions and 1 deletion.
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ sqlparse = "*"
[dev-packages]
argh = ">=0.26.2"
astroid = ">=2.3"
flower = "*"
coverage = ">=5.0"
crc-bonfire = "*"
debugpy = ">=1.3.0"
Expand Down
99 changes: 98 additions & 1 deletion Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 18 additions & 0 deletions docs/devtools.md
Original file line number Diff line number Diff line change
Expand Up @@ -313,3 +313,21 @@ Examples commands and results:
'schema1': {'PG': {'reporting_awscostentrylineitem_daily_summary': 'All data complete for table: reporting_awscostentrylineitem_daily_summary'}, 'TRINO': 'PG data complete so skipping trino query'}},
'schema3': {'PG': {'reporting_awscostentrylineitem_daily_summary': 'All data complete for table: reporting_awscostentrylineitem_daily_summary'}, 'TRINO': 'PG data complete so skipping trino query'}}
```

## Monitoring Celery ##

[Flower] is a tool for monitoring Celery clusters. It provides detailed information about the status of workers and tasks.

Flower is installed with the dev dependencies but it is not run by default. To start Flower, run

```
celery -A koku flower
```

Open http://localhost:5555 to see Celery details.

See the [Flower documentation][flower] for detailed usage information.



[flower]: https://flower.readthedocs.io/en/latest/index.html

0 comments on commit 73399b1

Please sign in to comment.