devbis / micropython-aiosentry

Asyncronous Sentry.io micro client for micropython

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

micropython-aiosentry

Here is a class for sending an exception with stacktrace from your micropython instance to Sentry.

    client = SentryClient(SENTRY_ID, SENTRY_KEY)

    try:
        x = 1/0
    except Exception as e:
        await client.send_exception(e)
        raise

About

Asyncronous Sentry.io micro client for micropython

License:MIT License


Languages

Language:Python 100.0%