diff --git a/javaagent/README.md b/javaagent/README.md index 69b414c8d..8be4dd712 100644 --- a/javaagent/README.md +++ b/javaagent/README.md @@ -16,7 +16,7 @@ It consists of a spring boot application with: - The collector is configured with the [OTLP receiver](https://github.com/open-telemetry/opentelemetry-collector/tree/main/receiver/otlpreceiver) and export it to standard out with - the [logging exporter](https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/loggingexporter) + the [logging exporter](https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/debugexporter) ## Prerequisites diff --git a/spring-native/README.md b/spring-native/README.md index f57da34af..177701b37 100644 --- a/spring-native/README.md +++ b/spring-native/README.md @@ -10,7 +10,7 @@ The example uses the following elements: - A collector configured with the [OTLP receiver](https://github.com/open-telemetry/opentelemetry-collector/tree/main/receiver/otlpreceiver) and exporting to the standard output with - the [logging exporter](https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/loggingexporter). + the [logging exporter](https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/debugexporter). - A spring configuration to suppress spans for the `/actuator` endpoint - A spring configuration to set OTLP headers dynamically (not needed for the example - it shows how to configure exporters programmatically) diff --git a/telemetry-testing/build.gradle.kts b/telemetry-testing/build.gradle.kts index f43362b88..62ed746ff 100644 --- a/telemetry-testing/build.gradle.kts +++ b/telemetry-testing/build.gradle.kts @@ -34,7 +34,7 @@ dependencies { implementation("org.springframework.boot:spring-boot-starter-web") testImplementation("org.springframework.boot:spring-boot-starter-test") - testImplementation(enforcedPlatform("org.junit:junit-bom:5.11.1")) + testImplementation(enforcedPlatform("org.junit:junit-bom:5.11.2")) testImplementation("org.junit.jupiter:junit-jupiter-api") testImplementation("org.junit.jupiter:junit-jupiter-engine") testImplementation("org.mock-server:mockserver-netty:5.15.0:shaded")