import styled from '@emotion/styled'; import Alert from 'sentry/components/alert'; import ExternalLink from 'sentry/components/links/externalLink'; import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step'; import type { Docs, DocsParams, OnboardingConfig, } from 'sentry/components/onboarding/gettingStartedDoc/types'; import {getPythonMetricsOnboarding} from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsOnboarding'; import {crashReportOnboardingPython} from 'sentry/gettingStartedDocs/python/python'; import {t, tct} from 'sentry/locale'; import {space} from 'sentry/styles/space'; type Params = DocsParams; const getInstallSnippet = () => `pip install --upgrade sentry-sdk`; const getSdkSetupSnippet = (params: Params) => ` import sentry_sdk from sentry_sdk.integrations.aws_lambda import AwsLambdaIntegration sentry_sdk.init( dsn="${params.dsn}", integrations=[AwsLambdaIntegration()],${ params.isPerformanceSelected ? ` # Set traces_sample_rate to 1.0 to capture 100% # of transactions for performance monitoring. traces_sample_rate=1.0,` : '' }${ params.isProfilingSelected ? ` # 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,` : '' } ) def my_function(event, context): ....`; const getTimeoutWarningSnippet = (params: Params) => ` sentry_sdk.init( dsn="${params.dsn}", integrations=[ AwsLambdaIntegration(timeout_warning=True), ], )`; const onboarding: OnboardingConfig = { introduction: () => tct( 'Create a deployment package on your local machine and install the required dependencies in the deployment package. For more information, see [link:AWS Lambda deployment package in Python].', { link: ( ), } ), install: () => [ { type: StepType.INSTALL, description: tct('Install our Python SDK using [code:pip]:', {code: }), configurations: [ { language: 'bash', code: getInstallSnippet(), }, ], }, ], configure: (params: Params) => [ { type: StepType.CONFIGURE, description: t( 'You can use the AWS Lambda integration for the Python SDK like this:' ), configurations: [ { language: 'python', code: getSdkSetupSnippet(params), }, ], additionalInfo: tct( "Check out Sentry's [link:AWS sample apps] for detailed examples.", { link: ( ), } ), }, { title: t('Timeout Warning'), description: tct( 'The timeout warning reports an issue when the function execution time is near the [link:configured timeout].', { link: ( ), } ), configurations: [ { description: tct( 'To enable the warning, update the SDK initialization to set [codeTimeout:timeout_warning] to [codeStatus:true]:', {codeTimeout: , codeStatus: } ), language: 'python', code: getTimeoutWarningSnippet(params), }, { description: t( 'The timeout warning is sent only if the timeout in the Lambda Function configuration is set to a value greater than one second.' ), }, ], additionalInfo: ( {tct( 'If you are using another web framework inside of AWS Lambda, the framework might catch those exceptions before we get to see them. Make sure to enable the framework specific integration as well, if one exists. See [link:Integrations] for more information.', { link: ( ), } )} ), }, ], verify: () => [], }; const docs: Docs = { onboarding, customMetricsOnboarding: getPythonMetricsOnboarding({ installSnippet: getInstallSnippet(), }), crashReportOnboarding: crashReportOnboardingPython, }; export default docs; const AlertWithMarginBottom = styled(Alert)` margin-top: ${space(2)}; margin-bottom: 0; `;