From f2e5eab09c72ddfcf2e32c200082aeb63557a213 Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Wed, 19 Apr 2023 15:42:21 +0100 Subject: [PATCH] Polish does for reporting traces using OTLP See gh-34508 --- .../src/docs/asciidoc/actuator/tracing.adoc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/tracing.adoc b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/tracing.adoc index 06b62b89f36..33bc92830ca 100644 --- a/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/tracing.adoc +++ b/spring-boot-project/spring-boot-docs/src/docs/asciidoc/actuator/tracing.adoc @@ -98,9 +98,12 @@ Use the `management.wavefront.*` configuration properties to configure reporting [[actuator.micrometer-tracing.tracer-implementations.otel-otlp]] ==== OpenTelemetry With OTLP +Tracing with OpenTelemetry and reporting using OTLP requires the following dependencies: -* `io.micrometer:micrometer-tracing-bridge-otel` - which is needed to bridge the Micrometer Observation API to OpenTelemetry. -* `io.opentelemetry:opentelemetry-exporter-otlp` - which is needed to report traces to a collector that can accept OTLP. +* `io.micrometer:micrometer-tracing-bridge-otel` - bridges the Micrometer Observation API to OpenTelemetry. +* `io.opentelemetry:opentelemetry-exporter-otlp` - report traces to a collector that can accept OTLP. + +Use the `management.otlp.tracing.*` configuration properties to configure reporting using OTLP.