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

https://github.com/rollbar/rollbar-celery-example

Example app using Rollbar with Celery
https://github.com/rollbar/rollbar-celery-example

Last synced: about 1 year ago
JSON representation

Example app using Rollbar with Celery

Awesome Lists containing this project

README

          

# rollbar-celery-example

A small example showing how to use Rollbar to catch and report exceptions from Celery workers

## How to use

1. Install redis-server

2. Install package requirements

```
pip install -r requirements.txt
```

3. Run the worker:

```
celery -A tasks worker --loglevel=info
```

4. Run `send_job.py`:

```
python send_job.py
```