Skip to main content

Airbrake notifier for Tornado web framework.

Project description

# airbrake-tornado

Airbrake notifier for Tornado web framework.

## Installation

Install via pip:

pip install airbrake-tornado

## Usage

```python
from airbrake import airbrake

# In your RequestHandler:

API_KEY = "Airbrake API key"
ENV_NAME = "Airbrake env name"

def write_error(self, status_code, **kwargs):
if exc_info and status_code == 500:
airbrake.notify(kwargs["exc_info"],
self.request,
"My-cool-app",
api_key=self.API_KEY,
environment=self.ENV_NAME)
```


## License

airbrake-tornado is available under the MIT license. See the [LICENSE](LICENSE) file for more info.

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page