To help with this it would be great to identify what exact fields the product uses in event.contexts.trace so the SDK can send as minimal of a payload as possible.
So far we've identified three fields:
event.contexts.trace.trace_id: Main correlation identifier for trace
event.contexts.trace.span_id: Main correlation identifier for span
event.contexts.trace.data: Used by transactions as a key-value bag for attributes, same function as span.data
While revamping the JS SDK for v8, we've been taking another look at what we send in
event.contexts.trace
.https://develop.sentry.dev/sdk/event-payloads/contexts/#trace-context
To help with this it would be great to identify what exact fields the product uses in
event.contexts.trace
so the SDK can send as minimal of a payload as possible.So far we've identified three fields:
event.contexts.trace.trace_id
: Main correlation identifier for traceevent.contexts.trace.span_id
: Main correlation identifier for spanevent.contexts.trace.data
: Used by transactions as a key-value bag for attributes, same function asspan.data