fix(spring-boot-jakarta): [Queue Instrumentation 37] Skip Kafka autoconfig for OTel agent#5343
Open
adinauer wants to merge 5 commits intofix/kafka-consumer-interceptor-reflectionfrom
Open
Conversation
This was referenced Apr 29, 2026
Merged
Open
Open
This was referenced Apr 29, 2026
📲 Install BuildsAndroid
|
Contributor
Performance metrics 🚀
|
…ka-otel-agent-autoconfig
…ka-otel-agent-autoconfig
…ka-otel-agent-autoconfig
…ka-otel-agent-autoconfig
This was referenced Apr 29, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Stack (Queue Instrumentation)
📜 Description
Prevent Spring Kafka auto-configuration from installing Sentry Kafka bean post-processors when the Sentry OpenTelemetry Java agent is active.
This change also updates the Jakarta OTel coexistence system tests to assert the intended behavior: OTel queue spans still reach Sentry, but the Sentry
SpringKafkaintegration stays disabled.💡 Motivation and Context
The Kafka auto-config gate only checked for
SentryAutoConfigurationCustomizerProvider, which covered the app-classpath OTel integration but missed the Java agent path. As a result, the agent sample still installedSentryKafkaProducerBeanPostProcessor, and the coexistence test failed for the wrong reason.Adding
AgentMarkerto the conditional fixes the real suppression bug and aligns the tests with the current OTel messaging mapping behavior.💚 How did you test it?
./gradlew spotlessApply apiDump./gradlew :sentry-spring-boot-jakarta:test --tests='*SentryKafkaAutoConfigurationTest' -x :sentry-spring-jakarta:compileJava -x :sentry-spring-jakarta:jar./gradlew :sentry-spring-boot-jakarta:compileTestKotlin :sentry-samples:sentry-samples-spring-boot-jakarta-opentelemetry:compileTestKotlin :sentry-samples:sentry-samples-spring-boot-jakarta-opentelemetry-noagent:compileTestKotlin -x :sentry-spring-jakarta:compileJava -x :sentry-spring-jakarta:jar📝 Checklist
sendDefaultPIIis enabled.🔮 Next steps
Continue moving the Queue Instrumentation stack toward a clean OTel coexistence story across the remaining samples.
#skip-changelog