Replies: 1 comment 3 replies
-
Hi @patsonluk . This is possible today, by using the autoconfigure SPI interface: Will that work for now? |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
We want to experiment with some extra functionality(profiling) that it's critical to trigger:
It appears that having our own implementation of
SpanProcessor
would be the most ideal candidate, however, with the existing design, the easiest approach for configuration will be something similar to https://github.com/open-telemetry/opentelemetry-java/blob/main/QUICKSTART.md#tracing-sdk-configuration.While it's not too terrible, it would have been much nicer if it can be built with some configuration option via auto config. It does seem to be a bit tricky to configure any additional span processor for auto config as the parameters right now are pretty simple (which is good), having an extra span processor config option could be messy (what exporter/sampler to attach to that)
I am wondering if there are any thoughts or suggestions for our usage? Are there something else other than
SpanProcessor
that we can look at?Beta Was this translation helpful? Give feedback.
All reactions