-
Notifications
You must be signed in to change notification settings - Fork 831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add get{Signal}Exporter methods to Simple{Signal}Processor, Batch{Signal}Processor #6078
Add get{Signal}Exporter methods to Simple{Signal}Processor, Batch{Signal}Processor #6078
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #6078 +/- ##
============================================
- Coverage 91.11% 91.09% -0.03%
- Complexity 5736 5739 +3
============================================
Files 628 628
Lines 16810 16814 +4
Branches 1662 1662
============================================
- Hits 15317 15316 -1
- Misses 1028 1035 +7
+ Partials 465 463 -2 ☔ View full report in Codecov by Sentry. |
I'm not necessarily opposed to this approach, but it does feel like a band-aid on something that should be easier to do with auto-configuration. I don't have a concrete proposal, but what if we had some sort of "autoconfiguration context" that stored all of the currently available auto-configured things, so that any customizer would be able to grab what it needs. It might mean a re-think of the whole auto-configuration codebase/SPIs, though. 🤔 |
My thought is that this is sort of the like the pattern of adding toBuilder methods. The design question is whether or not we want users to be able to introspect on the configuration of components, or have them be black boxes. Personally, I don't see any advantage to keeping them black boxes. Sure there's more surface area, but its trivial to maintain and hard to imagine abuse.
I think the design of autoconfigure and the SPIs is pretty good, and don't have interest in boiling the ocean to solve this problem. One related option I've thought about is to ensure we have public APIs for all the places where we interpret ConfigProperties and return SDK components. For example, we could add a But I'm not inclined to do this without more conversation / motivating use cases because it would require adding a bunch of new surface area. |
👍🏽 before we merge, are we sure the user from that conversation still needs this? |
I don't think its strictly necessary since in that case they want to wrap the batch processor instead of replacing it (from what I can gather). But I've personally had use cases where I wanted to replace the batch processor altogether: I wanted to ensure that all spans associated with a particular local root (typically all spans with a particular web request) were guaranteed to be exported in the same batch. This would allow the collector to do a sort of tail based sampling using all spans of request, but which does not require the normal resource intensive / complex routing associated with typical tail sampling where all spans of an entire trace are accumulated before making the decision. In this case, I am still sending batches of spans to a span exporter, but according to different rules than the batch span processor. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems like a reasonable approach to me. 👍🏻
Will merge this if there are no additional comments. |
Originally discussed in this comment, the idea is to make
AutoConfigurationCustomizer#addSpanProcessorCustomizer
more useful by allowing you to extract the configured SpanExporter/LogRecordExporter from the processor, and plug it into your own processor.