Cross-process tracing #1967
-
I'm wondering if it's possible to sort of "continue" a trace from within another process. So if I have a client that begins a trace and then this client makes a call to a sever, both can report their tracing data (through opentelemetry in my case) and I end up with a trace that includes both the server-side and the client-side action. I tried sending the Span's Id and specifying it as the parent span on the other side, but And in opentelemetry I would also have to make them share a |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sorry for the delay in responding. This is possible, yes.
Span IDs are opaque identifiers that can only be used in a single process—the Registry's documentation calls this out, but perhaps this should be in a more prominent location.
You will be able to use tracing-opentelemetry to propagate trace_id information, primarily through Does that help a bit? |
Beta Was this translation helpful? Give feedback.
Sorry for the delay in responding. This is possible, yes.
Span IDs are opaque identifiers that can only be used in a single process—the Registry's documentation calls this out, but perhaps this should be in a …