Skip to main content

Errbit Client

Project description

A client for reporting exceptions to errbit.

Installation

pip install errbit_reporter

Usage

import errbit_reporter as errbit

config = errbit.Configuration(
    api_key='491b8cbb777b051df1406ae0bcdbee2c',
    errbit_url='http://errbit.yourserver.com')

client = errbit.Client(config)
with client.notify_on_exception():
    your_code_here()

To avoid sending exceptions in development, just use None for the errbit_url. For example:

config = errbit.Configuration(
    api_key='491b8cbb777b051df1406ae0bcdbee2c',
    errbit_url=None,
    environment_name='development')

Additional context can be provided for the error. For example:

context = {
    'request_url': 'http://example.com/account/signup',
    'component': 'AccountController',
    'action': 'signup',
    'params': {
        'user': {
            'name': 'dylan'
        }
    },
    'cgi_data': {
        'REQUEST_METHOD': 'POST',
        'HTTP_USER_AGENT': 'curl'
    },
    'session' {
        'session_id': '6df95c0296cee016fb672af9310667e24dca066909a723dd6439369bb82911f3'
    }
}
with client.notify_on_exception(**context):
    your_code_here()

A notice can also be sent without a context manager to get notice metadata which can be used to log the errbit notice url.

try:
    your_code_here()
except:
    notice_metadata = client.notify()
    print(notice_metadata.url)

By default the exception information is taken from sys.exc_info(), but exc_info can also be passed as the first parameter, and additional context can be provided using the same keyword arguments as notify_on_exception.

In a distributed system (e.g. Spark) it is useful to be able to specify the backtrace manually. For example, this the backtrace could consist of local and remote processes stack trace, even if the remote processes is written in another language.

exc_type, exc_value, exc_traceback = sys.exc_info()
backtrace = traceback.extract_tb(exc_traceback)
notice = errbit.Notice(config, exc_type.__name__, str(exc_value), backtrace)
client.send_notice(notice)

Test Suite

make test

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

errbit-reporter-0.0.3.tar.gz (5.7 kB view details)

Uploaded Source

File details

Details for the file errbit-reporter-0.0.3.tar.gz.

File metadata

File hashes

Hashes for errbit-reporter-0.0.3.tar.gz
Algorithm Hash digest
SHA256 a7cb73063fc52a99902f03f3ecec206146f5883b303656ed2bd6d4c5f8eef9ff
MD5 c49efede7ba84721130408e2559eaf1e
BLAKE2b-256 8b015c4806c44106a08628d2b9f85c65d1c370a233fdb326d098fc6ef1619b71

See more details on using hashes here.

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