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
- Host: GitHub
- URL: https://github.com/rollbar/rollbar-celery-example
- Owner: rollbar
- Created: 2015-08-21T18:28:13.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2022-01-06T22:23:03.000Z (over 4 years ago)
- Last Synced: 2025-04-09T10:06:29.269Z (about 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 4
- Watchers: 29
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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
```