123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import type {
- Docs,
- DocsParams,
- OnboardingConfig,
- } from 'sentry/components/onboarding/gettingStartedDoc/types';
- import {getUploadSourceMapsStep} from 'sentry/components/onboarding/gettingStartedDoc/utils';
- import {
- getCrashReportJavaScriptInstallStep,
- getCrashReportModalConfigDescription,
- getCrashReportModalIntroduction,
- } from 'sentry/components/onboarding/gettingStartedDoc/utils/feedbackOnboarding';
- import {getJSServerMetricsOnboarding} from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsOnboarding';
- import {t, tct} from 'sentry/locale';
- import {trackAnalytics} from 'sentry/utils/analytics';
- import {getInstallConfig, getSdkInitSnippet} from 'sentry/utils/gettingStartedDocs/node';
- import {
- InstallationMode,
- platformOptions,
- } from 'sentry/views/onboarding/integrationSetup';
- type PlatformOptions = typeof platformOptions;
- type Params = DocsParams<PlatformOptions>;
- const getSdkSetupSnippet = (params: Params) => `
- // IMPORTANT: Make sure to import and initialize Sentry at the top of your file.
- ${getSdkInitSnippet(params, 'aws')}
- // Place any other require/import statements here
- exports.handler = Sentry.wrapHandler(async (event, context) => {
- // Your handler code
- });`;
- const getVerifySnippet = () => `
- exports.handler = Sentry.wrapHandler(async (event, context) => {
- throw new Error("This should show up in Sentry!")
- });`;
- const getMetricsConfigureSnippet = (params: DocsParams) => `
- Sentry.init({
- dsn: "${params.dsn.public}",
- // Only needed for SDK versions < 8.0.0
- // _experiments: {
- // metricsAggregator: true,
- // },
- });`;
- const onboarding: OnboardingConfig<PlatformOptions> = {
- introduction: () =>
- tct('In this quick guide you’ll use [strong:npm] or [strong:yarn] to set up:', {
- strong: <strong />,
- }),
- install: params => [
- {
- type: StepType.INSTALL,
- description: t('Add the Sentry AWS Serverless SDK as a dependency:'),
- configurations: getInstallConfig(params, {
- basePackage: '@sentry/aws-serverless',
- }),
- },
- ],
- configure: params => [
- {
- type: StepType.CONFIGURE,
- description: tct(
- "Ensure that Sentry is imported and initialized at the beginning of your file, prior to any other [code:require] or [code:import] statements. Then, wrap your lambda handler with Sentry's [code:wraphandler] function:",
- {
- code: <code />,
- }
- ),
- configurations: [
- {
- language: 'javascript',
- code: getSdkSetupSnippet(params),
- },
- ],
- },
- getUploadSourceMapsStep({
- guideLink:
- 'https://docs.sentry.io/platforms/javascript/guides/aws-lambda/sourcemaps/',
- ...params,
- }),
- ],
- verify: () => [
- {
- type: StepType.VERIFY,
- description: t(
- "This snippet contains an intentional error and can be used as a test to make sure that everything's working as expected."
- ),
- configurations: [
- {
- language: 'javascript',
- code: getVerifySnippet(),
- },
- ],
- },
- ],
- onPlatformOptionsChange(params) {
- return option => {
- if (option.installationMode === InstallationMode.MANUAL) {
- trackAnalytics('integrations.switch_manual_sdk_setup', {
- integration_type: 'first_party',
- integration: 'aws_lambda',
- view: 'onboarding',
- organization: params.organization,
- });
- }
- };
- },
- };
- const customMetricsOnboarding: OnboardingConfig<PlatformOptions> = {
- install: params => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'You need a minimum version [code:8.0.0] of [code:@sentry/aws-serverless]:',
- {
- code: <code />,
- }
- ),
- configurations: getInstallConfig(params, {
- basePackage: '@sentry/aws-serverless',
- }),
- },
- ],
- configure: params => [
- {
- type: StepType.CONFIGURE,
- description: t(
- 'With the default snippet in place, there is no need for any further configuration.'
- ),
- configurations: [
- {
- code: getMetricsConfigureSnippet(params),
- language: 'javascript',
- },
- ],
- },
- ],
- verify: getJSServerMetricsOnboarding().verify,
- };
- const crashReportOnboarding: OnboardingConfig<PlatformOptions> = {
- introduction: () => getCrashReportModalIntroduction(),
- install: (params: Params) => getCrashReportJavaScriptInstallStep(params),
- configure: () => [
- {
- type: StepType.CONFIGURE,
- description: getCrashReportModalConfigDescription({
- link: 'https://docs.sentry.io/platforms/javascript/guides/aws-lambda/user-feedback/configuration/#crash-report-modal',
- }),
- },
- ],
- verify: () => [],
- nextSteps: () => [],
- };
- const docs: Docs<PlatformOptions> = {
- onboarding,
- customMetricsOnboarding,
- crashReportOnboarding,
- platformOptions,
- };
- export default docs;
|