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
At the moment, we're getting events in the order more like:
StartRequest
StartSpan test/foo2
TagSpan test/foo2stack
StopSpan test/foo2
StartSpan test/foo
TagSpan test/foostack
StopSpan test/foo
TagRequest testtag1.23
StartSpan Controller/Yay
TagSpan Controller/Yaystack
StopSpan Controller/Yay
FinishRequest
The order events is wrong because the StartSpan test/foo2 refers to the parent_id of the StartSpan Controller/Yay which doesn't "exist" yet. Also, the order doesn't really make sense due to the order in which the spans are started/stopped etc.
These events should be reordered to their "natural" order, for example:
StartRequest
StartSpan Controller/Yay
StartSpan test/foo
StartSpan test/foo2
TagSpan test/foo2stack
StopSpan test/foo2
TagSpan test/foostack
StopSpan test/foo
TagRequest testtag1.23
TagSpan Controller/Yaystack
StopSpan Controller/Yay
FinishRequest
The text was updated successfully, but these errors were encountered:
At the moment, we're getting events in the order more like:
test/foo2
test/foo2
stack
test/foo2
test/foo
test/foo
stack
test/foo
testtag
1.23
Controller/Yay
Controller/Yay
stack
Controller/Yay
The order events is wrong because the
StartSpan test/foo2
refers to theparent_id
of theStartSpan Controller/Yay
which doesn't "exist" yet. Also, the order doesn't really make sense due to the order in which the spans are started/stopped etc.These events should be reordered to their "natural" order, for example:
Controller/Yay
test/foo
test/foo2
test/foo2
stack
test/foo2
test/foo
stack
test/foo
testtag
1.23
Controller/Yay
stack
Controller/Yay
The text was updated successfully, but these errors were encountered: