Skip to content

Commit

Permalink
Merge pull request #171 from RADAR-base/feature/sentry-support
Browse files Browse the repository at this point in the history
Add support for Sentry monitoring
  • Loading branch information
pvannierop authored Sep 24, 2024
2 parents 08c63b4 + fe00344 commit 6fbc891
Show file tree
Hide file tree
Showing 5 changed files with 168 additions and 15 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ object Versions {
const val slf4j = "2.0.13"
const val confluent = "7.6.0"
const val kafka = "${confluent}-ce"
const val avro = "1.11.3"
const val avro = "1.12.0"
const val jackson = "2.15.3"
const val okhttp = "4.12.0"
const val junit = "5.10.0"
Expand Down
118 changes: 118 additions & 0 deletions radar-commons-gradle/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

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)
* [Customizing Sentry configuration](#customizing-sentry-configuration)
<!-- TOC -->

## Usage

Add the following block to `settings.gradle.kts` to get access to the RADAR-base plugins.
Expand Down Expand Up @@ -51,6 +62,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 +86,103 @@ 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.

#### Customizing Sentry configuration

In a project that uses radar-commons-gradle, the Sentry configuration can be customized by using the _sentry_ extension
like for instance:

build.gradle.kts

```gradle
sentry {
debug = true
...
}
...
Additional information on config options: https://docs.sentry.io/platforms/java/guides/log4j2/gradle/
4 changes: 3 additions & 1 deletion 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 @@ -193,7 +194,7 @@ object Versions {
const val slf4j = "2.0.13"
const val confluent = "7.6.0"
const val kafka = "${confluent}-ce"
const val avro = "1.11.3"
const val avro = "1.12.0"
const val jackson = "2.15.3"
const val okhttp = "4.12.0"
const val junit = "5.10.0"
Expand All @@ -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,20 @@ 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)
}
} else {
plugins.removeIf({ it is SentryJvmPlugin })
}
if (extension.log4j2Version.isPresent) {
dependencies {
val log4j2Version = extension.log4j2Version.get()
Expand All @@ -171,6 +198,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 Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,6 @@

package org.radarbase.data;

import java.io.IOException;
import java.util.Arrays;
import java.util.UUID;
import java.util.concurrent.ThreadLocalRandom;
import junit.framework.TestCase;
import org.apache.avro.specific.SpecificData;
import org.radarbase.topic.AvroTopic;
Expand All @@ -29,9 +25,22 @@
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.io.IOException;
import java.util.UUID;
import java.util.concurrent.ThreadLocalRandom;

import static org.junit.Assert.assertArrayEquals;

public class AvroDatumEncoderTest extends TestCase {
private static final Logger logger = LoggerFactory.getLogger(AvroDatumEncoderTest.class);

public static String byteArrayToHex(byte[] a) {
StringBuilder sb = new StringBuilder(a.length * 2);
for (byte b : a)
sb.append(String.format("%02x", b & 0xff));
return sb.toString();
}

public void testJson() throws IOException {
AvroDatumEncoder encoder = new AvroDatumEncoder(SpecificData.get(), false);
AvroTopic<ObservationKey, EmpaticaE4BloodVolumePulse> topic = new AvroTopic<>("keeeeys", ObservationKey.getClassSchema(), EmpaticaE4BloodVolumePulse.getClassSchema(), ObservationKey.class, EmpaticaE4BloodVolumePulse.class);
Expand All @@ -58,20 +67,13 @@ public void testBinary() throws IOException {
byte[] expectedKey = {2, 8, 116, 101, 115, 116, 2, 97, 2, 98};
System.out.println("key: 0x" + byteArrayToHex(key));
System.out.println("expected: 0x" + byteArrayToHex(expectedKey));
assertTrue(Arrays.equals(expectedKey, key));
assertArrayEquals(expectedKey, key);
byte[] value = valueEncoder.encode(new EmpaticaE4BloodVolumePulse(0d, 0d, 0f));
// 8 bytes, 8 bytes, 4 bytes, all zero
byte[] expectedValue = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
System.out.println("value: 0x" + byteArrayToHex(value));
System.out.println("expected: 0x" + byteArrayToHex(expectedValue));
assertTrue(Arrays.equals(expectedValue, value));
}

public static String byteArrayToHex(byte[] a) {
StringBuilder sb = new StringBuilder(a.length * 2);
for(byte b: a)
sb.append(String.format("%02x", b & 0xff));
return sb.toString();
assertArrayEquals(expectedValue, value);
}

public void testSize() throws IOException {
Expand Down

0 comments on commit 6fbc891

Please sign in to comment.