123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- import {Fragment} from 'react';
- import ExternalLink from 'sentry/components/links/externalLink';
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import {
- type Docs,
- DocsPageLocation,
- type DocsParams,
- type OnboardingConfig,
- } from 'sentry/components/onboarding/gettingStartedDoc/types';
- import {getPythonMetricsOnboarding} from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsOnboarding';
- import replayOnboardingJsLoader from 'sentry/gettingStartedDocs/javascript/jsLoader/jsLoader';
- import {
- AlternativeConfiguration,
- crashReportOnboardingPython,
- } from 'sentry/gettingStartedDocs/python/python';
- import {t, tct} from 'sentry/locale';
- type Params = DocsParams;
- const getInstallSnippet = () => `pip install --upgrade 'sentry-sdk[flask]'`;
- const getSdkSetupSnippet = (params: Params) => `
- import sentry_sdk
- from flask import Flask
- sentry_sdk.init(
- dsn="${params.dsn.public}",${
- params.isPerformanceSelected
- ? `
- # Set traces_sample_rate to 1.0 to capture 100%
- # of transactions for tracing.
- traces_sample_rate=1.0,`
- : ''
- }${
- params.isProfilingSelected &&
- params.profilingOptions?.defaultProfilingMode !== 'continuous'
- ? `
- # 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,`
- : params.isProfilingSelected &&
- params.profilingOptions?.defaultProfilingMode === 'continuous'
- ? `
- _experiments={
- # Set continuous_profiling_auto_start to True
- # to automatically start the profiler on when
- # possible.
- "continuous_profiling_auto_start": True,
- },`
- : ''
- }
- )
- `;
- const onboarding: OnboardingConfig = {
- introduction: () =>
- tct('The Flask integration adds support for the [link:Flask Framework].', {
- link: <ExternalLink href="https://flask.palletsprojects.com" />,
- }),
- install: (params: Params) => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'Install [code:sentry-sdk] from PyPI with the [code:flask] extra:',
- {
- code: <code />,
- }
- ),
- configurations: [
- {
- description:
- params.docsLocation === DocsPageLocation.PROFILING_PAGE
- ? tct(
- 'You need a minimum version [code:1.18.0] of the [code:sentry-python] SDK for the profiling feature.',
- {
- code: <code />,
- }
- )
- : undefined,
- language: 'bash',
- code: getInstallSnippet(),
- },
- ],
- },
- ],
- configure: (params: Params) => [
- {
- type: StepType.CONFIGURE,
- description: tct(
- 'If you have the [codeFlask:flask] package in your dependencies, the Flask integration will be enabled automatically when you initialize the Sentry SDK. Initialize the Sentry SDK before your app has been initialized:',
- {
- codeFlask: <code />,
- }
- ),
- configurations: [
- {
- language: 'python',
- code: `
- ${getSdkSetupSnippet(params)}
- app = Flask(__name__)
- `,
- },
- ],
- additionalInfo: (
- <Fragment>
- {params.isProfilingSelected &&
- params.profilingOptions?.defaultProfilingMode === 'continuous' && (
- <Fragment>
- <AlternativeConfiguration />
- <br />
- </Fragment>
- )}
- {tct(
- 'The above configuration captures both error and performance data. To reduce the volume of performance data captured, change [code:traces_sample_rate] to a value between 0 and 1.',
- {code: <code />}
- )}
- </Fragment>
- ),
- },
- ],
- verify: (params: Params) => [
- {
- type: StepType.VERIFY,
- description: t(
- 'You can easily verify your Sentry installation by creating a route that triggers an error:'
- ),
- configurations: [
- {
- language: 'python',
- code: `
- ${getSdkSetupSnippet(params)}
- app = Flask(__name__)
- @app.route("/")
- def hello_world():
- 1/0 # raises an error
- return "<p>Hello, World!</p>"
- `,
- },
- ],
- additionalInfo: (
- <span>
- <p>
- {tct(
- 'When you point your browser to [link:http://localhost:5000/] a transaction in the Performance section of Sentry will be created.',
- {
- link: <ExternalLink href="http://localhost:5000/" />,
- }
- )}
- </p>
- <p>
- {t(
- 'Additionally, an error event will be sent to Sentry and will be connected to the transaction.'
- )}
- </p>
- <p>{t('It takes a couple of moments for the data to appear in Sentry.')}</p>
- </span>
- ),
- },
- ],
- nextSteps: () => [],
- };
- const performanceOnboarding: OnboardingConfig = {
- introduction: () =>
- t(
- "Adding Performance to your Flask project is simple. Make sure you've got these basics down."
- ),
- install: onboarding.install,
- configure: params => [
- {
- type: StepType.CONFIGURE,
- description: tct(
- 'To configure the Sentry SDK, initialize it in your [code:settings.py] file:',
- {code: <code />}
- ),
- configurations: [
- {
- language: 'python',
- code: `
- import sentry-sdk
- sentry_sdk.init(
- dsn: "${params.dsn.public}",
- // Set traces_sample_rate to 1.0 to capture 100%
- // of transactions for performance monitoring.
- traces_sample_rate=1.0,
- )`,
- additionalInfo: tct(
- 'Learn more about tracing [linkTracingOptions:options], how to use the [linkTracesSampler:traces_sampler] function, or how to [linkSampleTransactions:sample transactions].',
- {
- linkTracingOptions: (
- <ExternalLink href="https://docs.sentry.io/platforms/python/configuration/options/#tracing-options" />
- ),
- linkTracesSampler: (
- <ExternalLink href="https://docs.sentry.io/platforms/python/configuration/sampling/" />
- ),
- linkSampleTransactions: (
- <ExternalLink href="https://docs.sentry.io/platforms/python/configuration/sampling/" />
- ),
- }
- ),
- },
- ],
- },
- ],
- verify: () => [
- {
- type: StepType.VERIFY,
- description: tct(
- 'Verify that performance monitoring is working correctly with our [link:automatic instrumentation] by simply using your Python application.',
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/platforms/python/tracing/instrumentation/automatic-instrumentation/" />
- ),
- }
- ),
- additionalInfo: tct(
- 'You have the option to manually construct a transaction using [link:custom instrumentation].',
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/platforms/python/tracing/instrumentation/custom-instrumentation/" />
- ),
- }
- ),
- },
- ],
- nextSteps: () => [],
- };
- const docs: Docs = {
- onboarding,
- replayOnboardingJsLoader,
- customMetricsOnboarding: getPythonMetricsOnboarding({
- installSnippet: getInstallSnippet(),
- }),
- performanceOnboarding,
- crashReportOnboarding: crashReportOnboardingPython,
- };
- export default docs;
|