123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- import {Fragment} from 'react';
- import ExternalLink from 'sentry/components/links/externalLink';
- import List from 'sentry/components/list';
- import ListItem from 'sentry/components/list/listItem';
- import {Layout, LayoutProps} from 'sentry/components/onboarding/gettingStartedDoc/layout';
- import {ModuleProps} from 'sentry/components/onboarding/gettingStartedDoc/sdkDocumentation';
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {ProductSolution} from 'sentry/components/onboarding/productSelection';
- import {t, tct} from 'sentry/locale';
- // Configuration Start
- const profilingConfiguration = ` # Set profiles_sample_rate to 1.0 to profile 100%
- # of sampled transactions.
- # We recommend adjusting this value in production.
- profiles_sample_rate=1.0,`;
- const performanceConfiguration = ` # Set traces_sample_rate to 1.0 to capture 100%
- # of transactions for performance monitoring.
- # We recommend adjusting this value in production.
- traces_sample_rate=1.0,`;
- const introduction = (
- <Fragment>
- <p>
- {tct(
- 'The Sanic integration adds support for the [link:Sanic Web Framework]. We support the following versions:',
- {
- link: <ExternalLink href="https://github.com/sanic-org/sanic" />,
- }
- )}
- </p>
- <List symbol="bullet">
- <ListItem>0.8</ListItem>
- <ListItem>18.12</ListItem>
- <ListItem>19.12</ListItem>
- <ListItem>20.12</ListItem>
- <ListItem>{t('Any version of the form "x.12" (LTS versions).')}</ListItem>
- </List>
- <p>
- {tct(
- '[strong:We do support all versions of Sanic]. However, Sanic versions between LTS releases should be considered Early Adopter. We may not support all the features in these non-LTS versions, since non-LTS versions change quickly and [link:have introduced breaking changes in the past], without prior notice.',
- {
- strong: <strong />,
- link: <ExternalLink href="https://github.com/sanic-org/sanic/issues/1532" />,
- }
- )}
- </p>
- {t('A Python version of "3.6" or greater is also required.')}
- </Fragment>
- );
- export const steps = ({
- sentryInitContent,
- }: {
- sentryInitContent: string;
- }): LayoutProps['steps'] => [
- {
- type: StepType.INSTALL,
- description: <p>{tct('Install [code:sentry-sdk] from PyPI:', {code: <code />})}</p>,
- configurations: [
- {
- language: 'bash',
- code: '$ pip install --upgrade sentry-sdk',
- },
- {
- description: (
- <p>
- {tct(
- "f you're on Python 3.6, you also need the [code:aiocontextvars] package:",
- {
- code: <code />,
- }
- )}
- </p>
- ),
- language: 'bash',
- code: '$ pip install --upgrade aiocontextvars',
- },
- ],
- },
- {
- type: StepType.CONFIGURE,
- description: t(
- 'To configure the SDK, initialize it with the integration before or after your app has been initialized:'
- ),
- configurations: [
- {
- language: 'python',
- code: `
- import sentry_sdk
- from sentry_sdk.integrations.sanic import SanicIntegration
- from sanic import Sanic
- sentry_sdk.init(
- ${sentryInitContent}
- )
- app = Sanic(__name__)
- `,
- },
- ],
- },
- ];
- // Configuration End
- export function GettingStartedWithSanic({
- dsn,
- activeProductSelection = [],
- ...props
- }: ModuleProps) {
- const otherConfigs: string[] = [];
- let sentryInitContent: string[] = [
- ` dsn="${dsn}",`,
- ` integrations=[SanicIntegration()],`,
- ];
- if (activeProductSelection.includes(ProductSolution.PERFORMANCE_MONITORING)) {
- otherConfigs.push(performanceConfiguration);
- }
- if (activeProductSelection.includes(ProductSolution.PROFILING)) {
- otherConfigs.push(profilingConfiguration);
- }
- sentryInitContent = sentryInitContent.concat(otherConfigs);
- return (
- <Layout
- introduction={introduction}
- steps={steps({
- sentryInitContent: sentryInitContent.join('\n'),
- })}
- {...props}
- />
- );
- }
- export default GettingStartedWithSanic;
|