https://github.com/lyst/celery-statsd
Send data about Celery events to statsd
https://github.com/lyst/celery-statsd
Last synced: 7 months ago
JSON representation
Send data about Celery events to statsd
- Host: GitHub
- URL: https://github.com/lyst/celery-statsd
- Owner: lyst
- License: lgpl-3.0
- Created: 2015-11-25T17:27:08.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2023-05-20T12:38:39.000Z (about 3 years ago)
- Last Synced: 2025-05-16T21:38:02.055Z (about 1 year ago)
- Language: Python
- Size: 20.5 KB
- Stars: 29
- Watchers: 4
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
celery-statsd
=============
# Installation
```
pip install celery-statsd
```
# Set Up
In your `tasks.py`
```python
import celery_statsd
```
And in your settings file set `STATSD_HOST` and `STATSD_PORT`.
You will now have stats about your tasks in statsd.
By default stats will be published with a key prefix of "celery.". Change the CELERY_STATSD_PREFIX
if you want something different.