You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you click on any event here , you'll see a trace_id field under Info > otel. Our friendly customer team needs to use trace_id to trace verb-to-verb calls.
The existing trace_id that gets logged by default is probably the one described here.
Separately, our request headers contain a trace_id that can definitely be used to track verb-to-verb calls.
We do not know if the default trace_id field provided by otel (i.e. what we have now in Datadog) is actually correctly instrumented such that it can be used to trace verb-to-verb calls. We also do not know if otel's trace_id is the same as our request headers' trace_id.
The task here is to:
Find answers to these 2 unknowns.
If the existing trace_id does not enable tracing of verb-to-verb calls, then:
we need to either:
Fix it so that the spans we send to otel correctly cover the full call stack
OR, start logging our request headers' trace_id as a new attribute
Separately, we should check if any request header data (including trace_id) is persisted by default. We should also take a quick pass over to make sure we aren't exporting any sensitive data (e.g. auth tokens).
The text was updated successfully, but these errors were encountered:
If you click on any event here , you'll see a
trace_id
field under Info >otel
. Our friendly customer team needs to usetrace_id
to trace verb-to-verb calls.The existing
trace_id
that gets logged by default is probably the one described here.Separately, our request headers contain a
trace_id
that can definitely be used to track verb-to-verb calls.We do not know if the default
trace_id
field provided byotel
(i.e. what we have now in Datadog) is actually correctly instrumented such that it can be used to trace verb-to-verb calls. We also do not know ifotel
'strace_id
is the same as our request headers'trace_id
.The task here is to:
trace_id
does not enable tracing of verb-to-verb calls, then:otel
correctly cover the full call stacktrace_id
as a new attributetrace_id
) is persisted by default. We should also take a quick pass over to make sure we aren't exporting any sensitive data (e.g. auth tokens).The text was updated successfully, but these errors were encountered: