123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251 |
- 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 replayOnboardingJsLoader from 'sentry/gettingStartedDocs/javascript/jsLoader/jsLoader';
- import {t, tct} from 'sentry/locale';
- type Params = DocsParams;
- const getExceptionHandlerSnippet = () => `
- public function register() {
- $this->reportable(function (Throwable $e) {
- if (app()->bound('sentry')) {
- app('sentry')->captureException($e);
- }
- });
- }`;
- const getConfigureSnippet = (params: Params) =>
- `SENTRY_LARAVEL_DSN=${params.dsn}${
- params.isPerformanceSelected
- ? `
- # Specify a fixed sample rate
- SENTRY_TRACES_SAMPLE_RATE=1.0`
- : ''
- }${
- params.isProfilingSelected
- ? `
- # Set a sampling rate for profiling - this is relative to traces_sample_rate
- SENTRY_PROFILES_SAMPLE_RATE=1.0`
- : ''
- }`;
- const getMetricsInstallSnippet = () => `
- composer install sentry/sentry-laravel
- composer update sentry/sentry-laravel -W`;
- const getMetricsVerifySnippet = () => `
- use function \\Sentry\\metrics;
- // Add 4 to a counter named 'hits'
- metrics()->increment('hits', 4);
- metrics()->flush();
- // We recommend registering the flush call in a shutdown function
- register_shutdown_function(static fn () => metrics()->flush());
- // Or call flush in a Terminable Middleware
- use Closure;
- use Illuminate\\Http\\Request;
- use Symfony\\Component\\HttpFoundation\\Response;
- use function \\Sentry\\metrics;
- class SentryMetricsMiddleware
- {
- public function handle(Request $request, Closure $next): Response
- {
- return $next($request);
- }
- public function terminate(Request $request, Response $response): void
- {
- metrics()->flush();
- }
- }`;
- const onboarding: OnboardingConfig = {
- introduction: () =>
- tct(
- 'This guide is for Laravel 8+. We also provide instructions for [otherVersionsLink:other versions] as well as [lumenSpecificLink:Lumen-specific instructions].',
- {
- otherVersionsLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/php/guides/laravel/other-versions/" />
- ),
- lumenSpecificLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/php/guides/laravel/other-versions/lumen/" />
- ),
- }
- ),
- install: (params: Params) => [
- {
- type: StepType.INSTALL,
- configurations: [
- {
- description: tct('Install the [code:sentry/sentry-laravel] package:', {
- code: <code />,
- }),
- language: 'bash',
- code: `composer require sentry/sentry-laravel`,
- },
- ...(params.isProfilingSelected
- ? [
- {
- description: t('Install the Excimer extension via PECL:'),
- language: 'bash',
- code: 'pecl install excimer',
- },
- ]
- : []),
- {
- description: tct(
- 'Enable capturing unhandled exception to report to Sentry by making the following change to your [code:App/Exceptions/Handler.php]:',
- {
- code: <code />,
- }
- ),
- language: 'php',
- code: getExceptionHandlerSnippet(),
- },
- ],
- },
- ],
- configure: (params: Params) => [
- {
- type: StepType.CONFIGURE,
- configurations: [
- {
- description: t('Configure the Sentry DSN with this command:'),
- language: 'shell',
- code: `php artisan sentry:publish --dsn=${params.dsn}`,
- },
- {
- description: tct(
- 'It creates the config file ([sentryPHPCode:config/sentry.php]) and adds the [dsnCode:DSN] to your [envCode:.env] file where you can add further configuration options:',
- {sentryPHPCode: <code />, dsnCode: <code />, envCode: <code />}
- ),
- language: 'shell',
- code: getConfigureSnippet(params),
- },
- ],
- },
- ],
- verify: () => [
- {
- type: StepType.VERIFY,
- configurations: [
- {
- description: tct(
- 'You can test your configuration using the provided [code:sentry:test] artisan command:',
- {
- code: <code />,
- }
- ),
- language: 'shell',
- code: 'php artisan sentry:test',
- },
- ],
- },
- ],
- nextSteps: () => [],
- };
- const customMetricsOnboarding: OnboardingConfig = {
- install: () => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'You need a minimum version [codeVersionLaravel:4.0.0] of the Laravel SDK and a minimum version [codeVersion:4.3.0] of the PHP SDK installed',
- {
- codeVersionLaravel: <code />,
- codeVersion: <code />,
- }
- ),
- configurations: [
- {
- language: 'bash',
- code: getMetricsInstallSnippet(),
- },
- ],
- },
- ],
- configure: () => [
- {
- type: StepType.CONFIGURE,
- description: tct(
- 'Once the SDK is installed or updated, you can enable code locations being emitted with your metrics in your [code:config/sentry.php] file:',
- {
- code: <code />,
- }
- ),
- configurations: [
- {
- code: [
- {
- label: 'PHP',
- value: 'php',
- language: 'php',
- code: `'attach_metric_code_locations' => true,`,
- },
- ],
- },
- ],
- },
- ],
- verify: () => [
- {
- type: StepType.VERIFY,
- description: tct(
- "Then you'll be able to add metrics as [codeCounters:counters], [codeSets:sets], [codeDistribution:distributions], and [codeGauge:gauges]. Try out this example:",
- {
- codeCounters: <code />,
- codeSets: <code />,
- codeDistribution: <code />,
- codeGauge: <code />,
- codeNamespace: <code />,
- }
- ),
- configurations: [
- {
- code: [
- {
- label: 'PHP',
- value: 'php',
- language: 'php',
- code: getMetricsVerifySnippet(),
- },
- ],
- },
- {
- description: t(
- 'With a bit of delay you can see the data 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/guides/laravel/metrics/" />
- ),
- }
- ),
- },
- ],
- },
- ],
- };
- const docs: Docs = {
- onboarding,
- replayOnboardingJsLoader,
- customMetricsOnboarding,
- };
- export default docs;
|