123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454 |
- import {Fragment} from 'react';
- import styled from '@emotion/styled';
- import {Alert} from 'sentry/components/alert';
- import ExternalLink from 'sentry/components/links/externalLink';
- import Link from 'sentry/components/links/link';
- import {StepType} from 'sentry/components/onboarding/gettingStartedDoc/step';
- import type {
- Docs,
- DocsParams,
- OnboardingConfig,
- } from 'sentry/components/onboarding/gettingStartedDoc/types';
- import {MobileBetaBanner} from 'sentry/components/onboarding/gettingStartedDoc/utils';
- import exampleSnippets from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsExampleSnippets';
- import {metricTagsExplanation} from 'sentry/components/onboarding/gettingStartedDoc/utils/metricsOnboarding';
- import {
- getReplayMobileConfigureDescription,
- getReplayVerifyStep,
- } from 'sentry/components/onboarding/gettingStartedDoc/utils/replayOnboarding';
- import {feedbackOnboardingCrashApiDart} from 'sentry/gettingStartedDocs/dart/dart';
- import {t, tct} from 'sentry/locale';
- import {getPackageVersion} from 'sentry/utils/gettingStartedDocs/getPackageVersion';
- type Params = DocsParams;
- const getInstallSnippet = (params: Params) => `
- dependencies:
- sentry_flutter: ^${getPackageVersion(params, 'sentry.dart.flutter', '7.8.0')}`;
- const getConfigureSnippet = (params: Params) => `
- import 'package:sentry_flutter/sentry_flutter.dart';
- Future<void> main() async {
- await SentryFlutter.init(
- (options) {
- options.dsn = '${params.dsn.public}';${
- params.isPerformanceSelected
- ? `
- // Set tracesSampleRate to 1.0 to capture 100% of transactions for tracing.
- // We recommend adjusting this value in production.
- options.tracesSampleRate = 1.0;`
- : ''
- }${
- params.isProfilingSelected
- ? `
- // The sampling rate for profiling is relative to tracesSampleRate
- // Setting to 1.0 will profile 100% of sampled transactions:
- options.profilesSampleRate = 1.0;`
- : ''
- }
- },
- appRunner: () => runApp(const MyApp()),
- );
- // or define SENTRY_DSN via Dart environment variable (--dart-define)
- }`;
- const configureAdditionalInfo = tct(
- 'You can configure the [code: SENTRY_DSN], [code: SENTRY_RELEASE], [code: SENTRY_DIST], and [code: SENTRY_ENVIRONMENT] via the Dart environment variables passing the [code: --dart-define] flag to the compiler, as noted in the code sample.',
- {
- code: <code />,
- }
- );
- const getVerifySnippet = () => `
- child: ElevatedButton(
- onPressed: () {
- throw Exception('This is test exception');
- },
- child: const Text('Verify Sentry Setup'),
- )
- `;
- const getPerformanceSnippet = () => `
- import 'package:sentry/sentry.dart';
- void execute() async {
- final transaction = Sentry.startTransaction('processOrderBatch()', 'task');
- try {
- await processOrderBatch(transaction);
- } catch (exception) {
- transaction.throwable = exception;
- transaction.status = const SpanStatus.internalError();
- } finally {
- await transaction.finish();
- }
- }
- Future<void> processOrderBatch(ISentrySpan span) async {
- // span operation: task, span description: operation
- final innerSpan = span.startChild('task', description: 'operation');
- try {
- // omitted code
- } catch (exception) {
- innerSpan.throwable = exception;
- innerSpan.status = const SpanStatus.notFound();
- } finally {
- await innerSpan.finish();
- }
- }`;
- const getConfigureMetricsSnippet = (params: Params) => `
- import 'package:sentry_flutter/sentry_flutter.dart';
- Future<void> main() async {
- await SentryFlutter.init(
- (options) {
- options.dsn = '${params.dsn.public}';
- options.enableMetrics = true;
- },
- appRunner: initApp, // Init your App.
- );
- };`;
- const getInstallReplaySnippet = () => `
- await SentryFlutter.init(
- (options) {
- ...
- options.experimental.replay.sessionSampleRate = 1.0;
- options.experimental.replay.onErrorSampleRate = 1.0;
- },
- appRunner: () => runApp(MyApp()),
- );
- `;
- const getConfigureReplaySnippet = () => `
- options.experimental.replay.maskAllText = true;
- options.experimental.replay.maskAllImages = true;`;
- const metricsOnboarding: OnboardingConfig = {
- install: (params: DocsParams) => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'You need Sentry Flutter SDK version [code:7.19.0] or higher. Learn more about installation methods in our [docsLink:full documentation].',
- {
- code: <code />,
- docsLink: <Link to={`/projects/${params.projectSlug}/getting-started/`} />,
- }
- ),
- configurations: [
- {
- language: 'yml',
- partialLoading: params.sourcePackageRegistries?.isLoading,
- code: getInstallSnippet(params),
- },
- ],
- },
- ],
- configure: (params: DocsParams) => [
- {
- type: StepType.CONFIGURE,
- description: t(
- 'To enable capturing metrics, you need to enable the metrics feature.'
- ),
- configurations: [
- {
- code: [
- {
- label: 'Dart',
- value: 'dart',
- language: 'dart',
- code: getConfigureMetricsSnippet(params),
- },
- ],
- },
- ],
- },
- ],
- verify: () => [
- {
- type: StepType.VERIFY,
- description: tct(
- "Then you'll be able to add metrics as [code:counters], [code:sets], [code:distributions], and [code:gauges]. These are available under the [code:Sentry.metrics()] namespace.",
- {
- code: <code />,
- }
- ),
- configurations: [
- {
- description: metricTagsExplanation,
- },
- {
- description: t('Try out these examples:'),
- code: [
- {
- label: 'Counter',
- value: 'counter',
- language: 'dart',
- code: exampleSnippets.dart.counter,
- },
- {
- label: 'Distribution',
- value: 'distribution',
- language: 'dart',
- code: exampleSnippets.dart.distribution,
- },
- {
- label: 'Set',
- value: 'set',
- language: 'dart',
- code: exampleSnippets.dart.set,
- },
- {
- label: 'Gauge',
- value: 'gauge',
- language: 'dart',
- code: exampleSnippets.dart.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/flutter/metrics/" />
- ),
- }
- ),
- },
- ],
- },
- ],
- };
- const onboarding: OnboardingConfig = {
- install: params => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'Sentry captures data by using an SDK within your application’s runtime. Add the following to your [pubspec: pubspec.yaml]',
- {
- pubspec: <code />,
- }
- ),
- configurations: [
- {
- code: [
- {
- label: 'YAML',
- value: 'yaml',
- language: 'yaml',
- filename: 'pubspec.yaml',
- partialLoading: params.sourcePackageRegistries?.isLoading,
- code: getInstallSnippet(params),
- },
- ],
- },
- ],
- },
- ],
- configure: params => [
- {
- type: StepType.CONFIGURE,
- description: tct('Import [sentryFlutter: sentry_flutter] and initialize it', {
- sentryFlutter: <code />,
- }),
- configurations: [
- ...(params.isProfilingSelected
- ? [
- {
- description: t(
- 'Flutter Profiling alpha is available for iOS and macOS since SDK version 7.12.0.'
- ),
- },
- ]
- : []),
- {
- code: [
- {
- label: 'Dart',
- value: 'dart',
- language: 'dart',
- filename: 'main.dart',
- code: getConfigureSnippet(params),
- },
- ],
- additionalInfo: params.isPerformanceSelected ? (
- <Fragment>
- <p>{configureAdditionalInfo}</p>
- <AlertWithoutMarginBottom type="info">
- {t(
- 'To monitor performance, you need to add extra instrumentation as described in the Tracing section below.'
- )}
- </AlertWithoutMarginBottom>
- </Fragment>
- ) : (
- configureAdditionalInfo
- ),
- },
- ],
- },
- ],
- verify: (params: Params) => [
- {
- type: StepType.VERIFY,
- description: t(
- 'Create an intentional error, so you can test that everything is working. In the example below, pressing the button will throw an exception:'
- ),
- configurations: [
- {
- code: [
- {
- label: 'Dart',
- value: 'dart',
- language: 'dart',
- code: getVerifySnippet(),
- },
- ],
- },
- ],
- },
- ...(params.isPerformanceSelected
- ? [
- {
- title: t('Tracing'),
- description: t(
- "You'll be able to monitor the performance of your app using the SDK. For example:"
- ),
- configurations: [
- {
- code: [
- {
- label: 'Dart',
- value: 'dart',
- language: 'dart',
- code: getPerformanceSnippet(),
- },
- ],
- additionalInfo: tct(
- 'To learn more about the API and automatic instrumentations, check out the [perfDocs: tracing documentation].',
- {
- perfDocs: (
- <ExternalLink href="https://docs.sentry.io/platforms/flutter/tracing/instrumentation/" />
- ),
- }
- ),
- },
- ],
- },
- ]
- : []),
- ],
- nextSteps: () => [
- {
- name: t('Debug Symbols'),
- description: t(
- 'We offer a range of methods to provide Sentry with debug symbols so that you can see symbolicated stack traces and triage issues faster.'
- ),
- link: 'https://docs.sentry.io/platforms/flutter/upload-debug/',
- },
- {
- name: t('Source Context'),
- description: t(
- "If Sentry has access to your application's source code, it can show snippets of code source context around the location of stack frames, which helps to quickly pinpoint problematic code."
- ),
- link: 'https://docs.sentry.io/platforms/flutter/upload-debug/#uploading-source-context-for-flutter-android-ios-and-macos',
- },
- ],
- };
- const replayOnboarding: OnboardingConfig = {
- introduction: () => (
- <MobileBetaBanner link="https://docs.sentry.io/platforms/flutter/session-replay/" />
- ),
- install: (params: Params) => [
- {
- type: StepType.INSTALL,
- description: tct(
- 'Make sure your Sentry Flutter SDK version is at least 8.9.0, which is required for Session Replay. You can update your [code:pubspec.yaml] to the matching version:',
- {code: <code />}
- ),
- configurations: [
- {
- code: [
- {
- label: 'YAML',
- value: 'yaml',
- language: 'yaml',
- code: getInstallSnippet(params),
- },
- ],
- },
- {
- description: t(
- 'To set up the integration, add the following to your Sentry initialization:'
- ),
- },
- {
- code: [
- {
- label: 'Dart',
- value: 'dart',
- language: 'dart',
- code: getInstallReplaySnippet(),
- },
- ],
- },
- ],
- },
- ],
- configure: () => [
- {
- type: StepType.CONFIGURE,
- description: getReplayMobileConfigureDescription({
- link: 'https://docs.sentry.io/platforms/flutter/session-replay/#privacy',
- }),
- configurations: [
- {
- description: t(
- 'The following code is the default configuration, which masks and blocks everything.'
- ),
- code: [
- {
- label: 'Dart',
- value: 'dart',
- language: 'dart',
- code: getConfigureReplaySnippet(),
- },
- ],
- },
- ],
- },
- ],
- verify: getReplayVerifyStep({
- replayOnErrorSampleRateName:
- 'options\u200b.experimental\u200b.sessionReplay\u200b.onErrorSampleRate',
- replaySessionSampleRateName:
- 'options\u200b.experimental\u200b.sessionReplay\u200b.sessionSampleRate',
- }),
- nextSteps: () => [],
- };
- const docs: Docs = {
- onboarding,
- feedbackOnboardingCrashApi: feedbackOnboardingCrashApiDart,
- crashReportOnboarding: feedbackOnboardingCrashApiDart,
- customMetricsOnboarding: metricsOnboarding,
- replayOnboarding,
- };
- export default docs;
- const AlertWithoutMarginBottom = styled(Alert)`
- margin-bottom: 0;
- `;
|