,
}),
configurations: [
{
language: 'bash',
code: getInstallSnippet(),
},
],
},
],
configure: (params: Params) => [
{
type: StepType.CONFIGURE,
description: tct('Wrap your ASGI application with [code: SentryAsgiMiddleware]:', {
code:
,
}),
configurations: [
{
language: 'python',
code: getSdkSetupSnippet(params),
},
],
additionalInfo: t('The middleware supports both ASGI 2 and ASGI 3 transparently.'),
},
],
verify: () => [
{
type: StepType.VERIFY,
description: t('To verify that everything is working trigger an error on purpose:'),
configurations: [
{
language: 'python',
code: getVerifySnippet(),
},
],
additionalInfo: (
{tct(
'Run your ASGI app with uvicorn ([code:uvicorn main:app --port 8000]) and point your browser to [link:http://localhost:8000]. A transaction in the Performance section of Sentry will be created.',
{
code: ,
link:
{t( 'Additionally, an error event will be sent to Sentry and will be connected to the transaction.' )}
{t('It takes a couple of moments for the data to appear in Sentry.')}
), }, ], }; const docs: Docs = { onboarding, customMetricsOnboarding: getPythonMetricsOnboarding({ installSnippet: getInstallSnippet(), }), crashReportOnboarding: crashReportOnboardingPython, }; export default docs;