We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the SanicIntegration does not start transactions for a request-response-cycle.
SanicIntegration
If Sanic is a WSGI based framework we maybe can use SentryWsgiMiddleware like bottle does: https://github.com/getsentry/sentry-python/blob/master/sentry_sdk/integrations/bottle.py
SentryWsgiMiddleware
If not we can have a look at how the low level WSGI integration creates transactions (and continues traces from incoming requests): https://github.com/getsentry/sentry-python/blob/master/sentry_sdk/integrations/wsgi.py#L97-L115
The text was updated successfully, but these errors were encountered:
szokeasaurusrex
Successfully merging a pull request may close this issue.
Problem Statement
Currently the
SanicIntegration
does not start transactions for a request-response-cycle.Solution Brainstorm
If Sanic is a WSGI based framework we maybe can use
SentryWsgiMiddleware
like bottle does:https://github.com/getsentry/sentry-python/blob/master/sentry_sdk/integrations/bottle.py
If not we can have a look at how the low level WSGI integration creates transactions (and continues traces from incoming requests): https://github.com/getsentry/sentry-python/blob/master/sentry_sdk/integrations/wsgi.py#L97-L115
The text was updated successfully, but these errors were encountered: