123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480 |
- import ExternalLink from 'sentry/components/links/externalLink';
- import crashReportCallout from 'sentry/components/onboarding/gettingStartedDoc/feedback/crashReportCallout';
- import widgetCallout from 'sentry/components/onboarding/gettingStartedDoc/feedback/widgetCallout';
- import TracePropagationMessage from 'sentry/components/onboarding/gettingStartedDoc/replay/tracePropagationMessage';
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import type {
- Docs,
- DocsParams,
- OnboardingConfig,
- } from 'sentry/components/onboarding/gettingStartedDoc/types';
- import {
- getCrashReportJavaScriptInstallStep,
- getCrashReportModalConfigDescription,
- getCrashReportModalIntroduction,
- getFeedbackConfigOptions,
- getFeedbackConfigureDescription,
- } from 'sentry/components/onboarding/gettingStartedDoc/utils/feedbackOnboarding';
- import {getJSMetricsOnboarding} from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsOnboarding';
- import {
- getProfilingDocumentHeaderConfigurationStep,
- MaybeBrowserProfilingBetaWarning,
- } from 'sentry/components/onboarding/gettingStartedDoc/utils/profilingOnboarding';
- import {
- getReplayConfigOptions,
- getReplayConfigureDescription,
- } from 'sentry/components/onboarding/gettingStartedDoc/utils/replayOnboarding';
- import {t, tct} from 'sentry/locale';
- type Params = DocsParams;
- const getSdkClientSetupSnippet = (params: Params) => `
- import * as Sentry from "@sentry/solidstart";
- ${params.isPerformanceSelected ? 'import { solidRouterBrowserTracingIntegration } from "@sentry/solidstart/solidrouter";' : ''}
- import { mount, StartClient } from "@solidjs/start/client";
- Sentry.init({
- dsn: "${params.dsn.public}",
- integrations: [${
- params.isPerformanceSelected
- ? `
- solidRouterBrowserTracingIntegration(),`
- : ''
- }${
- params.isProfilingSelected
- ? `
- Sentry.browserProfilingIntegration(),`
- : ''
- }${
- params.isFeedbackSelected
- ? `
- Sentry.feedbackIntegration({
- // Additional SDK configuration goes in here, for example:
- colorScheme: "system",
- ${getFeedbackConfigOptions(params.feedbackOptions)}}),`
- : ''
- }${
- params.isReplaySelected
- ? `
- Sentry.replayIntegration(${getReplayConfigOptions(params.replayOptions)}),`
- : ''
- }
- ],${
- params.isPerformanceSelected
- ? `
- // Performance Monitoring
- tracesSampleRate: 1.0, // Capture 100% of the transactions
- // Set 'tracePropagationTargets' to control for which URLs distributed tracing should be enabled
- tracePropagationTargets: ["localhost", /^https:\\/\\/yourserver\\.io\\/api/],`
- : ''
- }${
- params.isReplaySelected
- ? `
- // 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.`
- : ''
- }${
- params.isProfilingSelected
- ? `
- // Set profilesSampleRate to 1.0 to profile every transaction.
- // Since profilesSampleRate is relative to tracesSampleRate,
- // the final profiling rate can be computed as tracesSampleRate * profilesSampleRate
- // For example, a tracesSampleRate of 0.5 and profilesSampleRate of 0.5 would
- // results in 25% of transactions being profiled (0.5*0.5=0.25)
- profilesSampleRate: 1.0,`
- : ''
- }
- });
- mount(() => <StartClient />, document.getElementById("app"));
- `;
- const getSdkServerSetupSnippet = (params: Params) => `
- import * as Sentry from "@sentry/solidstart";
- Sentry.init({
- dsn: "__PUBLIC_DSN__",
- ${
- params.isPerformanceSelected
- ? `
- // Performance Monitoring
- tracesSampleRate: 1.0, // Capture 100% of the transactions
- // Set 'tracePropagationTargets' to control for which URLs distributed tracing should be enabled
- tracePropagationTargets: ["localhost", /^https:\\/\\/yourserver\\.io\\/api/],`
- : ''
- }${
- params.isProfilingSelected
- ? `
- // Set profilesSampleRate to 1.0 to profile every transaction.
- // Since profilesSampleRate is relative to tracesSampleRate,
- // the final profiling rate can be computed as tracesSampleRate * profilesSampleRate
- // For example, a tracesSampleRate of 0.5 and profilesSampleRate of 0.5 would
- // results in 25% of transactions being profiled (0.5*0.5=0.25)
- profilesSampleRate: 1.0,`
- : ''
- }
- });
- `;
- const getSdkMiddlewareSetup = () => `
- import { sentryBeforeResponseMiddleware } from '@sentry/solidstart/middleware';
- import { createMiddleware } from '@solidjs/start/middleware';
- export default createMiddleware({
- onBeforeResponse: [
- sentryBeforeResponseMiddleware(),
- // Add your other middleware handlers after \`sentryBeforeResponseMiddleware\`
- ],
- });
- `;
- const getSdkRouterWrappingSetup = () => `
- import { Router } from "@solidjs/router";
- import { FileRoutes } from "@solidjs/start/router";
- import { withSentryRouterRouting } from "@sentry/solidstart/solidrouter";
- const SentryRouter = withSentryRouterRouting(Router);
- export default function App() {
- return (
- <SentryRouter>
- <FileRoutes />
- </SentryRouter>
- );
- }
- `;
- const getSdkRun = () => `
- {
- "scripts": {
- "start": "NODE_OPTIONS='--import ./public/instrument.server.mjs' vinxi start"
- }
- }
- `;
- const getVerifySolidSnippet = () => `
- <button
- type="button"
- onClick={() => {
- throw new Error("Sentry Frontend Error");
- }}
- >
- Throw error
- </button>`;
- const getInstallConfig = () => [
- {
- language: 'bash',
- code: [
- {
- label: 'npm',
- value: 'npm',
- language: 'bash',
- code: 'npm install --save @sentry/solidstart',
- },
- {
- label: 'yarn',
- value: 'yarn',
- language: 'bash',
- code: 'yarn add @sentry/solidstart',
- },
- {
- label: 'pnpm',
- value: 'pnpm',
- language: 'bash',
- code: `pnpm add @sentry/solidstart`,
- },
- ],
- },
- ];
- const onboarding: OnboardingConfig = {
- introduction: MaybeBrowserProfilingBetaWarning,
- install: () => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'Add the Sentry SDK as a dependency using [codeNpm:npm] or [codeYarn:yarn]:',
- {
- codeYarn: <code />,
- codeNpm: <code />,
- }
- ),
- configurations: getInstallConfig(),
- },
- ],
- configure: (params: Params) => [
- {
- type: StepType.CONFIGURE,
- description: t(
- "Initialize Sentry as early as possible in your application's lifecycle."
- ),
- configurations: [
- {
- description: tct(
- 'For the client, initialize the Sentry SDK in your [code:src/entry-client.tsx] file',
- {code: <code />}
- ),
- code: [
- {
- label: 'TypeScript',
- // value and language are in JS to get consistent syntax highlighting
- // we aren't using any Typescript specific code in these snippets but
- // want a typescript ending.
- value: 'javascript',
- language: 'javascript',
- code: getSdkClientSetupSnippet(params),
- },
- ],
- },
- {
- description: tct(
- 'For the server, create an instrument file [codeFile:instrument.server.mjs], initialize the Sentry SDK and deploy it alongside your application. For example by placing it in the [codeFolder:public] folder.',
- {codeFile: <code />, codeFolder: <code />}
- ),
- code: [
- {
- label: 'JavaScript',
- value: 'javascript',
- language: 'javascript',
- code: getSdkServerSetupSnippet(params),
- },
- ],
- additionalInfo: tct(
- 'Note: Placing [codeFile:instrument.server.mjs] inside the [codeFolder:public] folder makes it accessible to the outside world. Consider blocking requests to this file or finding a more appropriate location which your backend can access.',
- {codeFile: <code />, codeFolder: <code />}
- ),
- },
- ...(params.isPerformanceSelected
- ? [
- {
- description: tct(
- 'Complete the setup by adding the Sentry middleware to your [code:src/middleware.ts] file',
- {code: <code />}
- ),
- code: [
- {
- label: 'TypeScript',
- // value and language are in JS to get consistent syntax highlighting
- // we aren't using any Typescript specific code in these snippets but
- // want a typescript ending.
- value: 'javascript',
- language: 'javascript',
- code: getSdkMiddlewareSetup(),
- },
- ],
- },
- {
- description: tct(
- "If you're using [solidRouterLink:Solid Router], wrap your [codeRouter:Router] with [codeRouterWrapping:withSentryRouterRouting]. This creates a higher order component, which will enable Sentry to collect navigation spans.",
- {
- codeRouter: <code />,
- codeRouterWrapping: <code />,
- solidRouterLink: (
- <ExternalLink href="https://docs.solidjs.com/solid-router" />
- ),
- }
- ),
- code: [
- {
- label: 'TypeScript',
- value: 'typescript',
- language: 'typescript',
- code: getSdkRouterWrappingSetup(),
- },
- ],
- },
- ]
- : []),
- ...(params.isProfilingSelected
- ? [getProfilingDocumentHeaderConfigurationStep()]
- : []),
- {
- description: tct(
- 'Add an [codeFlag:--import] flag to the [codeNodeOptions:NODE_OPTIONS] environment variable wherever you run your application to import [codeInstrument:public/instrument.server.mjs]. For example, update your [codeScripts:scripts] entry in [codePackageJson:package.json]',
- {
- codeFlag: <code />,
- codeNodeOptions: <code />,
- codeInstrument: <code />,
- codeScripts: <code />,
- codePackageJson: <code />,
- }
- ),
- code: [
- {
- label: 'JSON',
- value: 'json',
- language: 'json',
- code: getSdkRun(),
- },
- ],
- },
- ],
- },
- {
- title: t('Upload Source Maps'),
- description: tct(
- 'To upload source maps to Sentry, follow the [link:instructions in our documentation].',
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/platforms/javascript/guides/solidstart/#add-readable-stack-traces-to-errors" />
- ),
- }
- ),
- },
- ],
- 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: [
- {
- code: [
- {
- label: 'JavaScript',
- value: 'javascript',
- language: 'javascript',
- code: getVerifySolidSnippet(),
- },
- ],
- },
- ],
- },
- ],
- nextSteps: () => [
- {
- id: 'solid-features',
- name: t('Solid Features'),
- description: t('Learn about our first class integration with the Solid framework.'),
- link: 'https://docs.sentry.io/platforms/javascript/guides/solid/features/',
- },
- {
- 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/solid/tracing/',
- },
- {
- 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/solid/session-replay/',
- },
- ],
- };
- const replayOnboarding: OnboardingConfig = {
- install: () => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'You need a minimum version 8.9.1 of [code:@sentry/solid] in order to use Session Replay. You do not need to install any additional packages.',
- {
- code: <code />,
- }
- ),
- configurations: getInstallConfig(),
- },
- ],
- configure: (params: Params) => [
- {
- type: StepType.CONFIGURE,
- description: getReplayConfigureDescription({
- link: 'https://docs.sentry.io/platforms/javascript/guides/solid/session-replay/',
- }),
- configurations: [
- {
- code: [
- {
- label: 'JavaScript',
- value: 'javascript',
- language: 'javascript',
- code: getSdkClientSetupSnippet(params),
- },
- ],
- additionalInfo: <TracePropagationMessage />,
- },
- ],
- },
- ],
- verify: () => [],
- nextSteps: () => [],
- };
- const feedbackOnboarding: OnboardingConfig = {
- install: () => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'For the User Feedback integration to work, you must have the Sentry browser SDK package, or an equivalent framework SDK (e.g. [code:@sentry/solid]) installed, minimum version 7.85.0.',
- {
- code: <code />,
- }
- ),
- configurations: getInstallConfig(),
- },
- ],
- configure: (params: Params) => [
- {
- type: StepType.CONFIGURE,
- description: getFeedbackConfigureDescription({
- linkConfig:
- 'https://docs.sentry.io/platforms/javascript/guides/solid/user-feedback/configuration/',
- linkButton:
- 'https://docs.sentry.io/platforms/javascript/guides/solid/user-feedback/configuration/#bring-your-own-button',
- }),
- configurations: [
- {
- code: [
- {
- label: 'JavaScript',
- value: 'javascript',
- language: 'javascript',
- code: getSdkClientSetupSnippet(params),
- },
- ],
- },
- ],
- additionalInfo: crashReportCallout({
- link: 'https://docs.sentry.io/platforms/javascript/guides/solid/user-feedback/#crash-report-modal',
- }),
- },
- ],
- verify: () => [],
- nextSteps: () => [],
- };
- const crashReportOnboarding: OnboardingConfig = {
- introduction: () => getCrashReportModalIntroduction(),
- install: (params: Params) => getCrashReportJavaScriptInstallStep(params),
- configure: () => [
- {
- type: StepType.CONFIGURE,
- description: getCrashReportModalConfigDescription({
- link: 'https://docs.sentry.io/platforms/javascript/guides/solid/user-feedback/configuration/#crash-report-modal',
- }),
- additionalInfo: widgetCallout({
- link: 'https://docs.sentry.io/platforms/javascript/guides/solid/user-feedback/#user-feedback-widget',
- }),
- },
- ],
- verify: () => [],
- nextSteps: () => [],
- };
- const docs: Docs = {
- onboarding,
- feedbackOnboardingNpm: feedbackOnboarding,
- replayOnboardingNpm: replayOnboarding,
- customMetricsOnboarding: getJSMetricsOnboarding({getInstallConfig}),
- crashReportOnboarding,
- };
- export default docs;
|