Python exception notifier for Airbrake
Project description
# Python exception notifier for Airbrake
[![Build Status](https://travis-ci.org/airbrake/pybrake.svg?branch=master)](https://travis-ci.org/airbrake/pybrake)
## Installation
pybrake requires Python 3.5+.
``` shell
pip install -U pybrake
```
## Usage
Creating notifier:
```python
import pybrake
notifier = pybrake.Notifier(project_id=123,
project_key='abc',
environment='production')
```
Sending errors to Airbrake:
```python
try:
raise ValueError('hello')
except Exception as err:
future = notifier.notify(err)
# future has type concurrent.futures.Future
notice = future.result()
```
By default `notify` sends errors asynchronously using `ThreadPoolExecutor` and returns a `concurrent.futures.Future`, but synchronous API is also available:
```python
notice = notifier.notify_sync(err)
if 'id' in notice:
print(notice['id'])
else:
print(notice['error'])
```
You can also set custom params on all reported notices:
```python
def my_filter(notice):
notice['params']['myparam'] = 'myvalue'
return notice
notifier.add_filter(my_filter)
```
Or ignore notices:
```python
def my_filter(notice):
if notice['context']['environment'] == 'development':
# Ignore notices in development environment.
return None
return notice
notifier.add_filter(my_filter)
```
## Logging integration
pybrake provide logging handler that sends your logs to Airbrake:
```python
import logging
import pybrake
airbrake_handler = pybrake.LoggingHandler(notifier=notifier,
level=logging.ERROR)
logger = logging.getLogger('test')
logger.addHandler(airbrake_handler)
logger.error('something bad happened')
```
## Development
Running tests:
``` shell
pip install -r test-requirements.txt
pytest
```
[![Build Status](https://travis-ci.org/airbrake/pybrake.svg?branch=master)](https://travis-ci.org/airbrake/pybrake)
## Installation
pybrake requires Python 3.5+.
``` shell
pip install -U pybrake
```
## Usage
Creating notifier:
```python
import pybrake
notifier = pybrake.Notifier(project_id=123,
project_key='abc',
environment='production')
```
Sending errors to Airbrake:
```python
try:
raise ValueError('hello')
except Exception as err:
future = notifier.notify(err)
# future has type concurrent.futures.Future
notice = future.result()
```
By default `notify` sends errors asynchronously using `ThreadPoolExecutor` and returns a `concurrent.futures.Future`, but synchronous API is also available:
```python
notice = notifier.notify_sync(err)
if 'id' in notice:
print(notice['id'])
else:
print(notice['error'])
```
You can also set custom params on all reported notices:
```python
def my_filter(notice):
notice['params']['myparam'] = 'myvalue'
return notice
notifier.add_filter(my_filter)
```
Or ignore notices:
```python
def my_filter(notice):
if notice['context']['environment'] == 'development':
# Ignore notices in development environment.
return None
return notice
notifier.add_filter(my_filter)
```
## Logging integration
pybrake provide logging handler that sends your logs to Airbrake:
```python
import logging
import pybrake
airbrake_handler = pybrake.LoggingHandler(notifier=notifier,
level=logging.ERROR)
logger = logging.getLogger('test')
logger.addHandler(airbrake_handler)
logger.error('something bad happened')
```
## Development
Running tests:
``` shell
pip install -r test-requirements.txt
pytest
```
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pybrake-0.1.tar.gz
(7.4 kB
view details)
File details
Details for the file pybrake-0.1.tar.gz
.
File metadata
- Download URL: pybrake-0.1.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 63ff86667c12779787de816b7acdafeb8927a9155b0fdb06e2698e2b27f972f2 |
|
MD5 | 40f9836fe7f07bd061a4918a70dd94a2 |
|
BLAKE2b-256 | c608193ec23acb8e7aae79f118826c29c127387013be9d747683a32e01b0e139 |