Replies: 1 comment
-
I have a very similar problem. At first, I thought the solution was to create custom traces out of our correlation IDs and force them on every span handling a message. But given how hard OTEL sdl fights back to prevent us from setting our own trace IDs I star to think it is not the right solution. Then someone suggested to use links, and I have the same exact concerns: will I be able to see connected traces? That is the whole reason I want to use open telemetry, so if the answer is no, I will be quite disappointed |
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
-
When working on representing connections as spans (e.g. open-telemetry/semantic-conventions#756 or open-telemetry/semantic-conventions#1192), we'd like to be able to
As a result, it could be possible to detect connection pool misconfiguration, leaked connection streams, see when request is slow because it's waiting for connection to be initiated or becomes available to it, etc.
Problem
There are a couple visualization concerns here:
Questions:
How do backends visualize links? Are they ready to show tons of incoming links and potentially huge graphs?
And a couple of fundamental questions:
Beta Was this translation helpful? Give feedback.
All reactions