PricingBlogDocumentationDocsLoginRegister

Connect your Serverless (Python) project to GlitchTip

It is recommended to use an integration for your particular serverless environment if available, as those are easier to use and capture more useful information.

If you use a serverless provider not directly supported by the SDK, you can use this generic integration.

Apply the serverless_function decorator to each function that might throw errors:

import sentry_sdk
from sentry_sdk.integrations.serverless import serverless_function

sentry_sdk.init(dsn="YOUR-GLITCHTIP-DSN-HERE")

@serverless_function
def my_function(...):
    ...