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
fix(trace-eap-waterfall-replay): Unable to load span details (#93899)
- We have multiple traces associated to a replay, and in the replay
trace tab we load one trace, and append the rest in batches of three, in
to one waterfall.
- The error below was happening because, we were using the trace_id of
the first trace fetched, to fetch the attributes of all the spans in the
waterfall using `/trace-item/..../?trace_id={slug}`. Leading to a 404
for spans that are not part of the first trace.
- Instead of concatenating the fetched results from the batch and
appending as one tree, we take the results and individually append them
to the tree, hence collecting and passing on the correct traceslugs that
the drawer uses to fetch eap span attrs.
<img width="1431" alt="Screenshot 2025-06-19 at 1 08 00 AM"
src="https://github.com/user-attachments/assets/271f4fc8-56db-4c3f-97f8-80703984784b"
/>
- Also fixed the order of traces processed.
Co-authored-by: Abdullah Khan <abdullahkhan@PG9Y57YDXQ.local>
0 commit comments