123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256 |
- 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 {
- getCrashReportModalConfigDescription,
- getCrashReportModalIntroduction,
- getCrashReportPHPInstallStep,
- } from 'sentry/components/onboarding/gettingStartedDoc/utils/feedbackOnboarding';
- import exampleSnippets from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsExampleSnippets';
- import {metricTagsExplanation} from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsOnboarding';
- import replayOnboardingJsLoader from 'sentry/gettingStartedDocs/javascript/jsLoader/jsLoader';
- import {t, tct} from 'sentry/locale';
- type Params = DocsParams;
- const getConfigureSnippet = (params: Params) => `\\Sentry\\init([
- 'dsn' => '${params.dsn}',${
- params.isPerformanceSelected
- ? `
- // Specify a fixed sample rate
- 'traces_sample_rate' => 1.0,`
- : ''
- }${
- params.isProfilingSelected
- ? `
- // Set a sampling rate for profiling - this is relative to traces_sample_rate
- 'profiles_sample_rate' => 1.0,`
- : ''
- }
- ]);`;
- const getMetricsConfigureSnippet = () => `
- use function \\Sentry\\init;
- \\Sentry\\init([
- 'attach_metric_code_locations' => true,
- ]);`;
- const getVerifySnippet = () => `
- try {
- $this->functionFailsForSure();
- } catch (\\Throwable $exception) {
- \\Sentry\\captureException($exception);
- }`;
- const onboarding: OnboardingConfig = {
- install: params => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'To install the PHP SDK, you need to be using Composer in your project. For more details about Composer, see the [composerDocumentationLink:Composer documentation].',
- {
- composerDocumentationLink: <ExternalLink href="https://getcomposer.org/doc/" />,
- }
- ),
- configurations: [
- {
- language: 'bash',
- code: 'composer require sentry/sentry',
- },
- ...(params.isProfilingSelected
- ? [
- {
- description: t('Install the Excimer extension via PECL:'),
- language: 'bash',
- code: 'pecl install excimer',
- },
- {
- description: tct(
- "The Excimer PHP extension supports PHP 7.2 and up. Excimer requires Linux or macOS and doesn't support Windows. For additional ways to install Excimer, see [sentryPhpDocumentationLink: Sentry documentation].",
- {
- sentryPhpDocumentationLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/php/profiling/#installation" />
- ),
- }
- ),
- },
- ]
- : []),
- ],
- },
- ],
- configure: params => [
- {
- type: StepType.CONFIGURE,
- description: t(
- 'To capture all errors, even the one during the startup of your application, you should initialize the Sentry PHP SDK as soon as possible.'
- ),
- configurations: [
- {
- language: 'php',
- code: getConfigureSnippet(params),
- additionalInfo: params.isPerformanceSelected && (
- <p>
- {tct(
- 'To instrument certain regions of your code, you can [instrumentationLink:create transactions to capture them].',
- {
- instrumentationLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/php/performance/instrumentation/custom-instrumentation/" />
- ),
- }
- )}
- </p>
- ),
- },
- ],
- },
- ],
- verify: () => [
- {
- type: StepType.VERIFY,
- description: t(
- 'In PHP you can either capture a caught exception or capture the last error with captureLastError.'
- ),
- configurations: [
- {
- language: 'php',
- code: getVerifySnippet(),
- },
- ],
- },
- ],
- nextSteps: () => [],
- };
- const customMetricsOnboarding: OnboardingConfig = {
- install: () => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'You need a minimum version [codeVersion:4.3.0] of the Sentry PHP SDK installed.',
- {
- codeVersion: <code />,
- }
- ),
- configurations: [
- {
- language: 'bash',
- code: 'composer install sentry/sentry',
- },
- ],
- },
- ],
- configure: () => [
- {
- type: StepType.CONFIGURE,
- description: t(
- 'Once the SDK is installed or updated, you can enable code locations being emitted with your metrics:'
- ),
- configurations: [
- {
- code: [
- {
- label: 'PHP',
- value: 'php',
- language: 'php',
- code: getMetricsConfigureSnippet(),
- },
- ],
- },
- ],
- },
- ],
- verify: () => [
- {
- type: StepType.VERIFY,
- description: tct(
- "Then you'll be able to add metrics as [codeCounters:counters], [codeSets:sets], [codeDistribution:distributions], and [codeGauge:gauges].",
- {
- codeCounters: <code />,
- codeSets: <code />,
- codeDistribution: <code />,
- codeGauge: <code />,
- codeNamespace: <code />,
- }
- ),
- configurations: [
- {
- description: metricTagsExplanation,
- },
- {
- description: t('Try out these examples:'),
- code: [
- {
- label: 'Counter',
- value: 'counter',
- language: 'php',
- code: exampleSnippets.php.counter,
- },
- {
- label: 'Distribution',
- value: 'distribution',
- language: 'php',
- code: exampleSnippets.php.distribution,
- },
- {
- label: 'Set',
- value: 'set',
- language: 'php',
- code: exampleSnippets.php.set,
- },
- {
- label: 'Gauge',
- value: 'gauge',
- language: 'php',
- code: exampleSnippets.php.gauge,
- },
- ],
- },
- {
- description: t(
- 'It can take up to 3 minutes for the data to appear in the Sentry UI.'
- ),
- },
- {
- description: tct(
- 'Learn more about metrics and how to configure them, by reading the [docsLink:docs].',
- {
- docsLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/php/metrics/" />
- ),
- }
- ),
- },
- ],
- },
- ],
- };
- const crashReportOnboarding: OnboardingConfig = {
- introduction: () => getCrashReportModalIntroduction(),
- install: (params: Params) => getCrashReportPHPInstallStep(params),
- configure: () => [
- {
- type: StepType.CONFIGURE,
- description: getCrashReportModalConfigDescription({
- link: 'https://docs.sentry.io/platforms/php/user-feedback/configuration/#crash-report-modal',
- }),
- },
- ],
- verify: () => [],
- nextSteps: () => [],
- };
- const docs: Docs = {
- onboarding,
- replayOnboardingJsLoader,
- customMetricsOnboarding,
- crashReportOnboarding,
- };
- export default docs;
|