Controlling OpenTelemetry Span Transmission for Specific Logic Flows in Spring Boot #12790
Unanswered
GalaxyiPhone
asked this question in
Q&A
Replies: 1 comment
-
I think this can be solved through ref |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm currently using the OpenTelemetry Spring Boot Starter in my project.
I have a question.
Traces and spans are automatically being sent to the collector through OpenTelemetry JDBC. However, I'd prefer if traces and spans were not sent from JDBC for certain logic flows.
For example, in a logic flow of Foo -> Bar -> Baz, if spans are sent during the Bar/Baz stages, I'd like to have the option where spans are not sent during the Bar/Baz stages for a different flow like Fie -> Bar -> Baz, even though the Bar/Baz logic is the same.
To summarize my question:
I'm wondering if there are any options or configurations available to disable span transmission for the latter part of the logic while keeping the logic itself unchanged, based on the initial part of the flow.
Beta Was this translation helpful? Give feedback.
All reactions