123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281 |
- 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
- const introduction = (
- <p>
- {tct(
- 'The sentry-logback library provides Logback support for Sentry using an [link:Appender] that sends logged exceptions to Sentry.',
- {
- link: (
- <ExternalLink href="https://logback.qos.ch/apidocs/ch/qos/logback/core/Appender.html" />
- ),
- }
- )}
- </p>
- );
- export const steps = ({
- dsn,
- }: {
- dsn?: string;
- } = {}): LayoutProps['steps'] => [
- {
- type: StepType.INSTALL,
- description: t(
- "Install Sentry's integration with Logback using either Maven or Gradle:"
- ),
- configurations: [
- {
- description: <h5>{t('Maven')}</h5>,
- configurations: [
- {
- language: 'xml',
- code: `
- <dependency>
- <groupId>io.sentry</groupId>
- <artifactId>sentry-logback</artifactId>
- <version>6.27.0</version>
- </dependency>
- `,
- },
- {
- language: 'xml',
- 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>0.0.3</version>
- <configuration>
- <!-- for showing output of sentry-cli -->
- <debugSentryCli>true</debugSentryCli>
- <!-- download the latest sentry-cli and provide path to it here -->
- <!-- download it here: https://github.com/getsentry/sentry-cli/releases -->
- <!-- minimum required version is 2.17.3 -->
- <sentryCliExecutablePath>/path/to/sentry-cli</sentryCliExecutablePath>
- <org>___ORG_SLUG___</org>
- <project>___PROJECT_SLUG___</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 -->
- <!-- you can find it in Sentry UI: Settings > Account > API > Auth Tokens -->
- <authToken>env.SENTRY_AUTH_TOKEN</authToken>
- </configuration>
- <executions>
- <execution>
- <phase>generate-resources</phase>
- <goals>
- <goal>uploadSourceBundle</goal>
- </goals>
- </execution>
- </executions>
- </plugin>
- </plugins>
- ...
- </build>
- `,
- },
- ],
- },
- {
- description: <h5>{t('Graddle')}</h5>,
- configurations: [
- {
- language: 'groovy',
- code: "implementation 'io.sentry:sentry-logback:6.27.0'",
- },
- {
- description: t(
- 'To upload your source code to Sentry so it can be shown in stack traces, use our Maven plugin.'
- ),
- language: 'groovy',
- code: `
- buildscript {
- repositories {
- mavenCentral()
- }
- }
- plugins {
- id "io.sentry.jvm.gradle" version "3.11.1"
- }
- 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 = "___ORG_SLUG___"
- projectName = "___PROJECT_SLUG___"
- authToken = "your-sentry-auth-token"
- }
- `,
- },
- ],
- },
- ],
- additionalInfo: (
- <p>
- {tct('For other dependency managers see the [link:central Maven repository].', {
- link: (
- <ExternalLink href="https://search.maven.org/artifact/io.sentry/sentry-logback" />
- ),
- })}
- </p>
- ),
- },
- {
- type: StepType.CONFIGURE,
- description: t(
- "Configure Sentry as soon as possible in your application's lifecycle:"
- ),
- configurations: [
- {
- language: 'xml',
- description: t(
- 'The following example configures a ConsoleAppender that logs to standard out at the INFO level, and a SentryAppender that logs to the Sentry server at the ERROR level. This only an example of a non-Sentry appender set to a different logging threshold, similar to what you may already have in your project.'
- ),
- code: `
- <configuration>
- <!-- Configure the Console appender -->
- <appender name="Console" class="ch.qos.logback.core.ConsoleAppender">
- <encoder>
- <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern>
- </encoder>
- </appender>
- <!-- Configure the Sentry appender, overriding the logging threshold to the WARN level -->
- <appender name="Sentry" class="io.sentry.logback.SentryAppender">
- <options>
- <dsn>${dsn}</dsn>
- </options>
- </appender>
- <!-- Enable the Console and Sentry appenders, Console is provided as an example
- of a non-Sentry logger that is set to a different logging threshold -->
- <root level="INFO">
- <appender-ref ref="Console" />
- <appender-ref ref="Sentry" />
- </root>
- </configuration>
- `,
- additionalInfo: (
- <p>
- {tct(
- "You'll also need to configure your DSN (client key) if it's not already in the [code:logback.xml] configuration. Learn more in [link:our documentation for DSN configuration].",
- {
- code: <code />,
- link: (
- <ExternalLink href="https://docs.sentry.io/platforms/java/guides/logback/#dsn-configuration/" />
- ),
- }
- )}
- </p>
- ),
- },
- {
- description: (
- <p>
- {tct(
- "Next, you'll need to set your log levels, as illustrated here. You can learn more about [link:configuring log levels] in our documentation.",
- {
- link: (
- <ExternalLink href="https://docs.sentry.io/platforms/java/guides/logback/#minimum-log-level/" />
- ),
- }
- )}
- </p>
- ),
- configurations: [
- {
- language: 'xml',
- code: `
- <appender name="Sentry" class="io.sentry.logback.SentryAppender">
- <options>
- <dsn>${dsn}</dsn>
- </options>
- <!-- Optionally change minimum Event level. Default for Events is ERROR -->
- <minimumEventLevel>WARN</minimumEventLevel>
- <!-- Optionally change minimum Breadcrumbs level. Default for Breadcrumbs is INFO -->
- <minimumBreadcrumbLevel>DEBUG</minimumBreadcrumbLevel>
- </appender>
- `,
- },
- ],
- },
- ],
- },
- {
- type: StepType.VERIFY,
- description: t(
- 'Last, create an intentional error, so you can test that everything is working:'
- ),
- configurations: [
- {
- description: <h5>Java</h5>,
- language: 'java',
- code: `
- import java.lang.Exception;
- import io.sentry.Sentry;
- try {
- throw new Exception("This is a test.");
- } catch (Exception e) {
- Sentry.captureException(e);
- }
- `,
- },
- {
- description: <h5>Kotlin</h5>,
- language: 'java',
- code: `
- import java.lang.Exception
- import io.sentry.Sentry
- try {
- throw Exception("This is a test.")
- } catch (e: Exception) {
- Sentry.captureException(e)
- }
- `,
- },
- ],
- additionalInfo: (
- <Fragment>
- <p>
- {t(
- "If you're new to Sentry, use the email alert to access your account and complete a product tour."
- )}
- </p>
- <p>
- {t(
- "If you're an existing user and have disabled alerts, you won't receive this email."
- )}
- </p>
- </Fragment>
- ),
- },
- ];
- // Configuration End
- export function GettingStartedWithLogBack({dsn, ...props}: ModuleProps) {
- return <Layout steps={steps({dsn})} introduction={introduction} {...props} />;
- }
- export default GettingStartedWithLogBack;
|