123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- import {Fragment} from 'react';
- import ExternalLink from 'sentry/components/links/externalLink';
- 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 {t, tct} from 'sentry/locale';
- // Configuration Start
- export const steps = ({
- dsn,
- sourcePackageRegistries,
- }: Partial<
- Pick<ModuleProps, 'dsn' | 'sourcePackageRegistries'>
- > = {}): LayoutProps['steps'] => [
- {
- type: StepType.INSTALL,
- description: (
- <p>
- {tct('Install the [strong:NuGet] package:', {
- strong: <strong />,
- })}
- </p>
- ),
- configurations: [
- {
- language: 'shell',
- partialLoading: sourcePackageRegistries?.isLoading,
- code: `dotnet add package Sentry.Maui -v ${
- sourcePackageRegistries?.isLoading
- ? t('\u2026loading')
- : sourcePackageRegistries?.data?.['sentry.dotnet.maui']?.version ?? '3.34.0'
- }`,
- },
- {
- language: 'powershell',
- partialLoading: sourcePackageRegistries?.isLoading,
- code: `Install-Package Sentry.Maui -Version ${
- sourcePackageRegistries?.isLoading
- ? t('\u2026loading')
- : sourcePackageRegistries?.data?.['sentry.dotnet.maui']?.version ?? '3.34.0'
- }`,
- },
- ],
- },
- {
- type: StepType.CONFIGURE,
- description: (
- <p>
- {tct(
- 'Then add Sentry to [mauiProgram:MauiProgram.cs] through the [mauiAppBuilderCode:MauiAppBuilder]:',
- {
- mauiAppBuilderCode: <code />,
- mauiProgram: <code />,
- }
- )}
- </p>
- ),
- configurations: [
- {
- language: 'csharp',
- code: `
- public static MauiApp CreateMauiApp()
- {
- var builder = MauiApp.CreateBuilder();
- builder
- .UseMauiApp<App>()
- // Add this section anywhere on the builder:
- .UseSentry(options => {
- // The DSN is the only required setting.
- options.Dsn = "${dsn}";
- // Use debug mode if you want to see what the SDK is doing.
- // Debug messages are written to stdout with Console.Writeline,
- // and are viewable in your IDE's debug console or with 'adb logcat', etc.
- // This option is not recommended when deploying your application.
- options.Debug = true;
- // Set TracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring.
- // We recommend adjusting this value in production.
- options.TracesSampleRate = 1.0;
- // Other Sentry options can be set here.
- })
- // ... the remainder of your MAUI app setup
- return builder.Build();
- }
- `,
- },
- ],
- },
- {
- type: StepType.VERIFY,
- description: t(
- 'To verify your set up, you can capture a message with the SDK, anywhere in your code after the application is built, such as in a page constructor or button click event handler:'
- ),
- configurations: [
- {
- language: 'csharp',
- code: 'SentrySdk.CaptureMessage("Hello Sentry");',
- },
- ],
- },
- {
- title: t('Performance Monitoring'),
- description: (
- <Fragment>
- {t(
- 'We do not yet have automatic performance instrumentation for .NET MAUI. We will be adding that in a future release. However, if desired you can still manually instrument parts of your application.'
- )}
- <p>
- {tct(
- 'For some parts of your code, [automaticInstrumentationLink:automatic instrumentation] is available across all of our .NET SDKs, and can be used with MAUI as well:',
- {
- automaticInstrumentationLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/dotnet/guides/maui/performance/instrumentation/automatic-instrumentation/" />
- ),
- }
- )}
- </p>
- </Fragment>
- ),
- configurations: [
- {
- description: (
- <p>
- {tct(
- 'If your app uses [code:HttpClient], you can instrument your HTTP calls by passing our HTTP message handler:',
- {code: <code />}
- )}
- </p>
- ),
- language: 'csharp',
- code: `
- var httpHandler = new SentryHttpMessageHandler();
- var httpClient = new HttpClient(httpHandler);
- `,
- },
- {
- description: (
- <Fragment>
- {t(
- 'If your app uses Entity Framework Core or SQL Client, we will automatically instrument that for you without any additional code.'
- )}
- <p>
- {tct(
- 'For other parts of your code, you can use [customInstrumentationLink:custom instrumentation], such as in the following example:',
- {
- customInstrumentationLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/dotnet/guides/maui/performance/instrumentation/custom-instrumentation/" />
- ),
- }
- )}
- </p>
- </Fragment>
- ),
- language: 'csharp',
- code: `
- // Transaction can be started by providing, at minimum, the name and the operation
- var transaction = SentrySdk.StartTransaction(
- "test-transaction-name",
- "test-transaction-operation"
- );
- // Transactions can have child spans (and those spans can have child spans as well)
- var span = transaction.StartChild("test-child-operation");
- // ...
- // (Perform the operation represented by the span/transaction)
- // ...
- span.Finish(); // Mark the span as finished
- transaction.Finish(); // Mark the transaction as finished and send it to Sentry
- `,
- },
- ],
- },
- {
- title: t('Sample Application'),
- description: (
- <p>
- {tct(
- 'See the [mauiSampleLink:MAUI Sample in the [code:sentry-dotnet] repository].',
- {
- mauiSampleLink: (
- <ExternalLink href="https://github.com/getsentry/sentry-dotnet/tree/main/samples/Sentry.Samples.Maui" />
- ),
- code: <code />,
- }
- )}
- </p>
- ),
- },
- ];
- // Configuration End
- export function GettingStartedWithMaui({
- dsn,
- sourcePackageRegistries,
- ...props
- }: ModuleProps) {
- return <Layout steps={steps({dsn, sourcePackageRegistries})} {...props} />;
- }
- export default GettingStartedWithMaui;
|