Skip to content

Commit

Permalink
Impl. support for Sentry monitoring
Browse files Browse the repository at this point in the history
  • Loading branch information
pvannierop committed Sep 13, 2024
1 parent 08c63b4 commit cc17126
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 0 deletions.
102 changes: 102 additions & 0 deletions radar-commons-gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

A Gradle plugin to do some common RADAR-base tasks.

<!-- TOC -->
* [radar-commons-gradle](#radar-commons-gradle)
* [Usage](#usage)
* [radar-commons-gradle plugin](#radar-commons-gradle-plugin)
* [radarKotlin extension](#radarkotlin-extension)
* [Enable logging with log4j2](#enable-logging-with-log4j2)
* [Enable monitoring with Sentry](#enable-monitoring-with-sentry)
* [Enable Sentry source context](#enable-sentry-source-context)
<!-- TOC -->

## Usage

Add the following block to `settings.gradle.kts` to get access to the RADAR-base plugins.
Expand Down Expand Up @@ -51,6 +61,13 @@ subprojects {
kotlinVersion.set(Versions.Plugins.kotlin) // already has a default value
junitVersion.set(Versions.junit) // already has a default value
ktlintVersion.set(Versions.ktlint) // already has a default value
slf4jVersion.set(Versions.slf4j) // already has a default value
// log4j2Version.set(Versions.log4j2) // setting this will enable log4j2
// sentryVersion.set(Versions.sentry) // setting this will enable Sentry monitoring
// sentryEnabled.set(false) // setting this to true will enable Sentry monitoring
// sentrySourceContextToken.set("") // setting this will upload the source code context to Sentry
// sentryOrganization.set("radar-base") // already has a default value, only needed when setting 'sentrySourceContextToken'
// sentryProject.set("") // already has a default value, only needed when setting 'sentrySourceContextToken'
}
// Both values are required to be set to use radar-publishing.
Expand All @@ -68,3 +85,88 @@ subprojects {
}
}
```

## radar-commons-gradle plugin

This plugin provides the basics for RADAR-base projects.

### radarKotlin extension

#### Enable logging with log4j2

By default, no logging implementation is added to projects (only the slf4j interface is included). To enable log4j2, add
the following to your root project configurations:

```gradle
...
subprojects {
...
radarKotlin {
log4j2Version.set(Versions.log4j2)
}
...
}
```

#### Enable monitoring with Sentry

1. Activate log4j2 logging (see [above](#enable-logging-with-log4j2))
2. Activate Sentry in the _radarKotlin_ extension:

```gradle
...
subprojects {
...
radarKotlin {
sentryEnabled.set(true)
}
...
}
```

3. Add a Sentry log Appender to the `log4j2.xml` configuration file to `src/main/resources`. For example:

```xml
<configuration status="warn">
<appenders>
<Console name="Console" target="SYSTEM_OUT">
<PatternLayout
pattern="%d{HH:mm:ss.SSS} [%t] %-5level %logger{36} - %msg%n"
/>
</Console>
<Sentry name="Sentry" debug="false"/>
</appenders>

<loggers>
<root level="INFO">
<appender-ref ref="Console" />
<appender-ref ref="Sentry" level="WARN" />
</root>
</loggers>
</configuration>
```

4. Set the `SENTRY_DSN` environment variable at runtime to the DSN of your Sentry project.

#### Enable Sentry source context

Sentry can be configured to show the source code context of the error. For this to work, source code can be uploaded
to the target sentry organization and project during the build phase. To enable this, set the following values:

```gradle
...
subprojects {
...
radarKotlin {
sentrySourceContextToken.set("my-token")
sentryOrganization.set("my-organization")
sentryProject.set("my-project")
}
...
}
```

NOTE: The organization and project must correspond to the values for the monitoring environment in Sentry. The
organization and project are encooded in Sentry OAuth token.


2 changes: 2 additions & 0 deletions radar-commons-gradle/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ dependencies {
implementation("io.github.gradle-nexus:publish-plugin:${Versions.Plugins.publishPlugin}")
implementation("org.jlleitschuh.gradle:ktlint-gradle:${Versions.ktlint}")
implementation("com.github.jk1.dependency-license-report:com.github.jk1.dependency-license-report.gradle.plugin:${Versions.Plugins.licenseReport}")
implementation("io.sentry.jvm.gradle:io.sentry.jvm.gradle.gradle.plugin:${Versions.sentry}")
}

gradlePlugin {
Expand Down Expand Up @@ -209,4 +210,5 @@ object Versions {
const val guava = "32.1.1-jre"
const val gradleVersionsPlugin = "0.50.0"
const val ktlint = "12.0.3"
const val sentry = "4.10.0"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package org.radarbase.gradle.plugin

import com.github.jk1.license.LicenseReportPlugin
import io.sentry.android.gradle.extensions.SentryPluginExtension
import io.sentry.jvm.gradle.SentryJvmPlugin
import org.gradle.api.Plugin
import org.gradle.api.Project
import org.gradle.api.plugins.ApplicationPlugin
Expand Down Expand Up @@ -42,6 +44,10 @@ interface RadarKotlinExtension {
val log4j2Version: Property<String>
val slf4jVersion: Property<String>
val ktlintVersion: Property<String>
val sentryEnabled: Property<Boolean>
val sentryOrganization: Property<String>
val sentryProject: Property<String>
val sentrySourceContextToken: Property<String>
}

class RadarKotlinPlugin : Plugin<Project> {
Expand All @@ -53,11 +59,18 @@ class RadarKotlinPlugin : Plugin<Project> {
junitVersion.convention(Versions.junit)
ktlintVersion.convention(Versions.ktlint)
slf4jVersion.convention(Versions.ktlint)
sentryEnabled.convention(false)
sentryOrganization.convention("radar-base")
sentryProject.convention(project.name)
sentrySourceContextToken.convention("")
}

apply(plugin = "kotlin")
apply<KtlintPlugin>()

// SentryJvmPlugin will be removed in afterEvaluate when sentryEnabled == false.
apply<SentryJvmPlugin>()

repositories {
mavenCentral {
mavenContent {
Expand Down Expand Up @@ -162,6 +175,18 @@ class RadarKotlinPlugin : Plugin<Project> {
implementation("org.slf4j:slf4j-api:${extension.slf4jVersion.get()}")
}
}
if (extension.sentryEnabled.get()) {
val sentry = extensions.get("sentry") as SentryPluginExtension
sentry.org.set(extension.sentryOrganization)
sentry.projectName.set(extension.sentryProject)
if (extension.sentrySourceContextToken.isPresent &&
extension.sentrySourceContextToken.get().isNotEmpty()
) {
// Passing the source context token will activate upload of our source code to Sentry.
sentry.includeSourceContext.set(true)
sentry.authToken.set(extension.sentrySourceContextToken)
}
}
if (extension.log4j2Version.isPresent) {
dependencies {
val log4j2Version = extension.log4j2Version.get()
Expand All @@ -171,6 +196,10 @@ class RadarKotlinPlugin : Plugin<Project> {
runtimeOnly("org.apache.logging.log4j:log4j-slf4j2-impl:$log4j2Version")
runtimeOnly("org.apache.logging.log4j:log4j-core:$log4j2Version")
runtimeOnly("org.apache.logging.log4j:log4j-jul:$log4j2Version")
if (extension.sentryEnabled.get()) {
val annotationProcessor by configurations
annotationProcessor("org.apache.logging.log4j:log4j-core:$log4j2Version")
}
} else {
val testRuntimeOnly by configurations
testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j2-impl:$log4j2Version")
Expand All @@ -195,6 +224,9 @@ class RadarKotlinPlugin : Plugin<Project> {
}
}
}

} else {
plugins.removeIf({ it is SentryJvmPlugin })
}
}

Expand Down

0 comments on commit cc17126

Please sign in to comment.