Skip to content
Advertisement

Tag: open-telemetry

Importing OpenTelemetry trace data from Spring Boot application to Elastic APM – views are missing data

I have a Spring Boot application with Spring Cloud Sleuth, OpenTelemetry instrumentation and OpenTelemetry exporter OTLP. This is a gist of dependencies: spring-cloud-starter-sleuth without Brave, because we are using OpenTelemetry instrumentation spring-cloud-sleuth-otel-autoconfigure which introduces OpenTelemetry instrumentation libs and provides Spring autoconfiguration opentelemetry-exporter-otlp for sending data to apm server I have only basic configuration in my application.yml: With this setup I

How to generate trace ID in AWS format

I would like to use opentelemetry-java-instrumentation with AWS OTEL collector and X-Ray. Unfortunately, AWS OTEL aws-xray exporter is not able to export generated traces to X-Ray because generated trace ID is invalid X-Ray trace ID: How to instrument my opentelemetry-java-instrumentation 1.7.0 to generate trace IDs in X-Ray format? I’ve tried to add aws extension + env variables: without success. Answer

Advertisement