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 {getUploadSourceMapsStep} from 'sentry/components/onboarding/gettingStartedDoc/utils'; import {ProductSolution} from 'sentry/components/onboarding/productSelection'; import {PlatformKey} from 'sentry/data/platformCategories'; import {t, tct} from 'sentry/locale'; import type {Organization} from 'sentry/types'; type StepProps = { newOrg: boolean; organization: Organization; platformKey: PlatformKey; projectId: string; sentryInitContent: string; }; // Configuration Start const replayIntegration = ` new Sentry.Replay(), `; const replayOtherConfig = ` // Session Replay replaysSessionSampleRate: 0.1, // This sets the sample rate at 10%. You may want to change it to 100% while in development and then sample at a lower rate in production. replaysOnErrorSampleRate: 1.0, // If you're not already sampling the entire session, change the sample rate to 100% when sampling sessions where errors occur. `; const performanceOtherConfig = ` // Performance Monitoring tracesSampleRate: 1.0, // Capture 100% of the transactions, reduce in production! `; export const steps = ({ sentryInitContent, ...props }: Partial = {}): LayoutProps['steps'] => [ { type: StepType.INSTALL, description: t( 'Sentry captures data by using an SDK within your application’s runtime.' ), configurations: [ { language: 'bash', code: ` # Using ember-cli ember install @sentry/ember `, }, ], }, { type: StepType.CONFIGURE, description: (

{tct( 'You should [initCode:init] the Sentry SDK as soon as possible during your application load up in [appCode:app.js], before initializing Ember:', { initCode: , appCode: , } )}

), configurations: [ { language: 'javascript', code: ` import Application from "@ember/application"; import Resolver from "ember-resolver"; import loadInitializers from "ember-load-initializers"; import config from "./config/environment"; import * as Sentry from "@sentry/ember"; Sentry.init({ ${sentryInitContent} }); export default class App extends Application { modulePrefix = config.modulePrefix; podModulePrefix = config.podModulePrefix; Resolver = Resolver; } `, }, ], }, getUploadSourceMapsStep({ guideLink: 'https://docs.sentry.io/platforms/javascript/guides/ember/sourcemaps/', ...props, }), { 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: `myUndefinedFunction();`, }, ], }, ]; export const nextSteps = [ { id: 'performance-monitoring', name: t('Performance Monitoring'), description: t( 'Track down transactions to connect the dots between 10-second page loads and poor-performing API calls or slow database queries.' ), link: 'https://docs.sentry.io/platforms/javascript/guides/ember/performance/', }, { id: 'session-replay', name: t('Session Replay'), description: t( 'Get to the root cause of an error or latency issue faster by seeing all the technical details related to that issue in one visual replay on your web application.' ), link: 'https://docs.sentry.io/platforms/javascript/guides/ember/session-replay/', }, ]; // Configuration End export function GettingStartedWithEmber({ dsn, activeProductSelection = [], organization, newOrg, platformKey, projectId, }: ModuleProps) { const integrations: string[] = []; const otherConfigs: string[] = []; let nextStepDocs = [...nextSteps]; if (activeProductSelection.includes(ProductSolution.PERFORMANCE_MONITORING)) { otherConfigs.push(performanceOtherConfig.trim()); nextStepDocs = nextStepDocs.filter( step => step.id !== ProductSolution.PERFORMANCE_MONITORING ); } if (activeProductSelection.includes(ProductSolution.SESSION_REPLAY)) { integrations.push(replayIntegration.trim()); otherConfigs.push(replayOtherConfig.trim()); nextStepDocs = nextStepDocs.filter( step => step.id !== ProductSolution.SESSION_REPLAY ); } let sentryInitContent: string[] = [`dsn: "${dsn}",`]; if (integrations.length > 0) { sentryInitContent = sentryInitContent.concat('integrations: [', integrations, '],'); } if (otherConfigs.length > 0) { sentryInitContent = sentryInitContent.concat(otherConfigs); } return ( ); } export default GettingStartedWithEmber;