Usage
build.gradle
Groovy DSL
dependencies {
implementation helix.errorreporting.sentry.springboot.starter
}
build.gradle.kts
Kotlin DSL
dependencies {
implementation(helix.errorreporting.sentry.springboot.starter)
}
Configuration
This starter uses the helix.errorreporting.sentry property namespace.
Helix Sentry error reporting configuration.
helix.errorreporting.sentry.enabled(Boolean, default:False): Enable Sentry error reporting.helix.errorreporting.sentry.dsn(String): Sentry DSN (ingest URL). Required when Sentry error reporting is enabled.helix.errorreporting.sentry.trace-sample-rate(Double, default:1.0): Tracing sample rate between 0.0 and 1.0.helix.errorreporting.sentry.debug(Boolean, default:False): Enable Sentry client debug logging.