airbrake-python
airbrake-python copied to clipboard
Airbrake Python
Right now this library will block when it's issuing notifications or deploy events. Adding a non-blocking way of doing this would be awesome. http://docs.python-requests.org/en/master/user/advanced/#blocking-or-non-blocking mentions https://github.com/kennethreitz/grequests and https://github.com/ross/requests-futures as possible...
In airbrake-ruby, we have https://github.com/airbrake/airbrake-ruby#airbrakeadd_filter. It would be nice to provide a flexible way for users to similarly filter out sensitive information.
It would be great to have a nice convenient decorator to wrap functions and ship any exceptions that the function returns. I think this would live separately from the current...
So I see the notes about the global exception stack here: https://github.com/airbrake/airbrake-python/blob/master/airbrake/notifier.py#L153 And later I see duplicate exception instances getting filtered out. https://github.com/airbrake/airbrake-python/blob/master/airbrake/notifier.py#L173: ``` # dont ship the same exception...