opentelemetry-java-instrume.../instrumentation/spring
Lauri Tulmin 0521ac1850
Add logback mdc instrumentation to spring boot starter (#12515)
2024-10-29 09:00:48 -07:00
..
spring-batch-3.0/javaagent convert spring batch tests to java (#12004) 2024-09-13 07:50:30 -07:00
spring-boot-actuator-autoconfigure-2.0/javaagent Fix spring-boot-actuator-autoconfigure-2.0 latest dep test (#11446) 2024-05-23 12:48:33 -07:00
spring-boot-autoconfigure Add logback mdc instrumentation to spring boot starter (#12515) 2024-10-29 09:00:48 -07:00
spring-boot-resources Semconv 1.25.0 migration (#10983) 2024-04-09 11:25:52 -07:00
spring-cloud-aws-3.0/javaagent fix(deps): update dependency io.opentelemetry.semconv:opentelemetry-semconv to v1.28.0-alpha (#12292) 2024-10-28 10:55:06 -07:00
spring-cloud-gateway Remove unneeded annotation (#12351) 2024-09-28 09:05:58 -07:00
spring-core-2.0/javaagent Clear context propagation virtual field (#12397) 2024-10-08 17:58:02 +03:00
spring-data Fix tracing CoroutineCrudRepository.findById (#12131) 2024-09-12 15:06:28 -07:00
spring-integration-4.1 fix(deps): update dependency io.opentelemetry.semconv:opentelemetry-semconv to v1.28.0-alpha (#12292) 2024-10-28 10:55:06 -07:00
spring-jms fix(deps): update dependency io.opentelemetry.semconv:opentelemetry-semconv to v1.28.0-alpha (#12292) 2024-10-28 10:55:06 -07:00
spring-kafka-2.7 fix(deps): update dependency io.opentelemetry.semconv:opentelemetry-semconv to v1.28.0-alpha (#12292) 2024-10-28 10:55:06 -07:00
spring-rabbit-1.0/javaagent fix(deps): update dependency io.opentelemetry.semconv:opentelemetry-semconv to v1.28.0-alpha (#12292) 2024-10-28 10:55:06 -07:00
spring-rmi-4.0/javaagent Simplify test (#11339) 2024-05-15 11:31:22 -07:00
spring-scheduling-3.1 config properties support for spring starter clients (#11605) 2024-07-02 16:49:39 +03:00
spring-security-config-6.0 fix(deps): update dependency io.opentelemetry.semconv:opentelemetry-semconv to v1.28.0-alpha (#12292) 2024-10-28 10:55:06 -07:00
spring-web Http server builder (#11651) 2024-10-07 09:41:24 -07:00
spring-webflux Http server builder (#11651) 2024-10-07 09:41:24 -07:00
spring-webmvc Fix some assertions (#12520) 2024-10-26 15:01:29 -07:00
spring-ws-2.0/javaagent move spring-ws-2.0 tests to java (#11196) 2024-04-23 08:17:23 +00:00
starters Add span baggage processor (#11697) 2024-07-19 08:30:06 -07:00
README.md Document spring-batch and spring-scheduling flags (#10155) 2024-01-03 10:49:28 -08:00

README.md

OpenTelemetry Instrumentation: Spring and Spring Boot

This package streamlines the manual instrumentation process of OpenTelemetry for Spring and Spring Boot applications. It will enable you to add traces to requests and database calls with minimal changes to application code. This package will not fully automate your OpenTelemetry instrumentation, instead, it will provide you with better tools to instrument your own code.

Settings

System property Type Default Description
otel.instrumentation.spring-batch.item.enabled Boolean false Enable creating a span for each batch item.
otel.instrumentation.spring-batch.experimental.chunk.new-trace Boolean false Enable staring a new trace for each batch chunk.
otel.instrumentation.spring-batch.experimental-span-attributes Boolean false Enable the capture of experimental span attributes for Spring Batch version 3.0.
otel.instrumentation.spring-integration.global-channel-interceptor-patterns List * An array of Spring channel name patterns that will be intercepted. See Spring Integration docs for more details.
otel.instrumentation.spring-integration.producer.enabled Boolean false Create producer spans when messages are sent to an output channel. Enable when you're using a messaging library that doesn't have its own instrumentation for generating producer spans. Note that the detection of output channels only works for Spring Cloud Stream DirectWithAttributesChannel.
otel.instrumentation.spring-scheduling.experimental-span-attributes Boolean false Enable the capture of experimental span attributes for Spring Scheduling version 3.1.
otel.instrumentation.spring-webflux.experimental-span-attributes Boolean false Enable the capture of experimental span attributes for Spring WebFlux version 5.0.
otel.instrumentation.spring-webmvc.experimental-span-attributes Boolean false Enable the capture of experimental span attributes for Spring Web MVC version 3.1.