123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- import {Fragment} from 'react';
- import ExternalLink from 'sentry/components/links/externalLink';
- import Link from 'sentry/components/links/link';
- 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 {PlatformOption} from 'sentry/components/onboarding/gettingStartedDoc/types';
- import {useUrlPlatformOptions} from 'sentry/components/onboarding/platformOptionsControl';
- import {ProductSolution} from 'sentry/components/onboarding/productSelection';
- import {t, tct} from 'sentry/locale';
- export enum PackageManager {
- GRADLE = 'gradle',
- MAVEN = 'maven',
- }
- type PlaformOptionKey = 'packageManager';
- interface StepsParams {
- dsn: string;
- hasPerformance: boolean;
- packageManager: PackageManager;
- organizationSlug?: string;
- projectSlug?: string;
- sourcePackageRegistries?: ModuleProps['sourcePackageRegistries'];
- }
- // Configuration Start
- const packageManagerName: Record<PackageManager, string> = {
- [PackageManager.GRADLE]: 'Gradle',
- [PackageManager.MAVEN]: 'Maven',
- };
- const platformOptions: Record<PlaformOptionKey, PlatformOption> = {
- packageManager: {
- label: t('Package Manager'),
- items: [
- {
- label: t('Gradle'),
- value: PackageManager.GRADLE,
- },
- {
- label: t('Maven'),
- value: PackageManager.MAVEN,
- },
- ],
- },
- };
- const introduction = (
- <p>
- {tct(
- "Sentry supports Kotlin for both JVM and Android. This wizard guides you through set up in the JVM scenario. If you're interested in [strong:Android], head over to the [gettingStartedWithAndroidLink:Getting Started] for that SDK instead. At its core, Sentry for Java provides a raw client for sending events to Sentry. If you use [strong2:Spring Boot, Spring, Logback, JUL, or Log4j2], head over to our [gettingStartedWithJavaLink:Getting Started for Sentry Java].",
- {
- gettingStartedWithAndroidLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/android/" />
- ),
- gettingStartedWithJavaLink: (
- <ExternalLink href="https://docs.sentry.io/platforms/java/" />
- ),
- strong: <strong />,
- strong2: <strong />,
- }
- )}
- </p>
- );
- export const steps = ({
- dsn,
- sourcePackageRegistries,
- hasPerformance,
- packageManager,
- projectSlug,
- organizationSlug,
- }: StepsParams): LayoutProps['steps'] => [
- {
- type: StepType.INSTALL,
- description: t(`Install the SDK via %s:`, packageManagerName[packageManager]),
- configurations: [
- {
- description: (
- <p>
- {tct(
- 'To see source context in Sentry, you have to generate an auth token by visiting the [link:Organization Auth Tokens] settings. You can then set the token as an environment variable that is used by the build plugins.',
- {
- link: <Link to="/settings/auth-tokens/" />,
- }
- )}
- </p>
- ),
- language: 'bash',
- code: `SENTRY_AUTH_TOKEN=___ORG_AUTH_TOKEN___`,
- },
- ...(packageManager === PackageManager.GRADLE
- ? [
- {
- language: 'groovy',
- partialLoading: sourcePackageRegistries?.isLoading,
- description: (
- <p>
- {tct(
- 'The [link:Sentry Gradle Plugin] automatically installs the Sentry SDK as well as available integrations for your dependencies. Add the following to your [code:build.gradle] file:',
- {
- code: <code />,
- link: (
- <ExternalLink href="https://github.com/getsentry/sentry-android-gradle-plugin" />
- ),
- }
- )}
- </p>
- ),
- code: `
- buildscript {
- repositories {
- mavenCentral()
- }
- }
- plugins {
- id "io.sentry.jvm.gradle" version "${
- sourcePackageRegistries?.isLoading
- ? t('\u2026loading')
- : sourcePackageRegistries?.data?.['sentry.java.android.gradle-plugin']?.version ??
- '3.12.0'
- }"
- }
- sentry {
- // Generates a JVM (Java, Kotlin, etc.) source bundle and uploads your source code to Sentry.
- // This enables source context, allowing you to see your source
- // code as part of your stack traces in Sentry.
- includeSourceContext = true
- org = "${organizationSlug}"
- projectName = "${projectSlug}"
- authToken = System.getenv("SENTRY_AUTH_TOKEN")
- }
- `,
- },
- ]
- : []),
- ...(packageManager === PackageManager.MAVEN
- ? [
- {
- description: (
- <p>
- {tct('Add the Sentry SDK to your [code:pom.xml] file:', {
- code: <code />,
- })}
- </p>
- ),
- configurations: [
- {
- language: 'xml',
- partialLoading: sourcePackageRegistries?.isLoading,
- code: `
- <dependency>
- <groupId>io.sentry</groupId>
- <artifactId>sentry</artifactId>
- <version>${
- sourcePackageRegistries?.isLoading
- ? t('\u2026loading')
- : sourcePackageRegistries?.data?.['sentry.java']?.version ?? '6.27.0'
- }</version>
- </dependency>
- `,
- },
- {
- language: 'xml',
- partialLoading: sourcePackageRegistries?.isLoading,
- description: t(
- 'To upload your source code to Sentry so it can be shown in stack traces, use our Maven plugin.'
- ),
- code: `
- <build>
- <plugins>
- <plugin>
- <groupId>io.sentry</groupId>
- <artifactId>sentry-maven-plugin</artifactId>
- <version>${
- sourcePackageRegistries?.isLoading
- ? t('\u2026loading')
- : sourcePackageRegistries?.data?.['sentry.java.mavenplugin']?.version ?? '0.0.4'
- }</version>
- <configuration>
- <!-- for showing output of sentry-cli -->
- <debugSentryCli>true</debugSentryCli>
- <org>${organizationSlug}</org>
- <project>${projectSlug}</project>
- <!-- in case you're self hosting, provide the URL here -->
- <!--<url>http://localhost:8000/</url>-->
- <!-- provide your auth token via SENTRY_AUTH_TOKEN environment variable -->
- <authToken>\${env.SENTRY_AUTH_TOKEN}</authToken>
- </configuration>
- <executions>
- <execution>
- <phase>generate-resources</phase>
- <goals>
- <goal>uploadSourceBundle</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- ...
- </build>
- `,
- },
- ],
- },
- ]
- : []),
- ],
- additionalInfo: (
- <p>
- {tct(
- 'If you prefer to manually upload your source code to Sentry, please refer to [link:Manually Uploading Source Context].',
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/platforms/java/source-context/#manually-uploading-source-context" />
- ),
- }
- )}
- </p>
- ),
- },
- {
- type: StepType.CONFIGURE,
- description: t(
- "Configure Sentry as soon as possible in your application's lifecycle:"
- ),
- configurations: [
- {
- language: 'kotlin',
- code: `
- import io.sentry.Sentry
- Sentry.init { options ->
- options.dsn = "${dsn}"${
- hasPerformance
- ? `
- // Set tracesSampleRate to 1.0 to capture 100% of transactions for performance monitoring.
- // We recommend adjusting this value in production.
- options.tracesSampleRate = 1.0`
- : ''
- }
- // When first trying Sentry it's good to see what the SDK is doing:
- options.isDebug = true
- }
- `,
- },
- ],
- },
- {
- type: StepType.VERIFY,
- description: (
- <p>
- {tct(
- 'Trigger your first event from your development environment by intentionally creating an error with the [code:Sentry#captureException] method, to test that everything is working:',
- {code: <code />}
- )}
- </p>
- ),
- configurations: [
- {
- language: 'kotlin',
- code: `
- import java.lang.Exception
- import io.sentry.Sentry
- try {
- throw Exception("This is a test.")
- } catch (e: Exception) {
- Sentry.captureException(e)
- }`,
- additionalInfo: (
- <Fragment>
- {t(
- "If you're new to Sentry, use the email alert to access your account and complete a product tour."
- )}
- <p>
- {t(
- "If you're an existing user and have disabled alerts, you won't receive this email."
- )}
- </p>
- </Fragment>
- ),
- },
- ],
- },
- ];
- export const nextSteps = [
- {
- id: 'examples',
- name: t('Examples'),
- description: t('Check out our sample applications.'),
- link: 'https://github.com/getsentry/sentry-java/tree/main/sentry-samples',
- },
- {
- id: 'performance-monitoring',
- name: t('Performance Monitoring'),
- description: t(
- 'Stay ahead of latency issues and trace every slow transaction to a poor-performing API call or database query.'
- ),
- link: 'https://docs.sentry.io/platforms/java/performance/',
- },
- ];
- // Configuration End
- export function GettingStartedWithKotlin({
- dsn,
- sourcePackageRegistries,
- projectSlug,
- organization,
- activeProductSelection = [],
- ...props
- }: ModuleProps) {
- const optionValues = useUrlPlatformOptions(platformOptions);
- const hasPerformance = activeProductSelection.includes(
- ProductSolution.PERFORMANCE_MONITORING
- );
- const nextStepDocs = [...nextSteps];
- return (
- <Layout
- steps={steps({
- dsn,
- sourcePackageRegistries,
- projectSlug: projectSlug ?? '___PROJECT_SLUG___',
- organizationSlug: organization?.slug ?? '___ORG_SLUG___',
- packageManager: optionValues.packageManager as PackageManager,
- hasPerformance,
- })}
- introduction={introduction}
- platformOptions={platformOptions}
- nextSteps={nextStepDocs}
- projectSlug={projectSlug}
- {...props}
- />
- );
- }
- export default GettingStartedWithKotlin;
|