An open API service indexing awesome lists of open source software.

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

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.