Is it possible to dump whole trace before its export? #6122
Unanswered
magicliang
asked this question in
Q&A
Replies: 1 comment 5 replies
-
Trace is a collection of spans, it doesn't have an explicit end, but rather you could say that the trace is completed when no more spans are received for it. In practice when a complete trace is desired one could apply some timeouts. For example you could say that a trace is max 10min long or if a trace has not received new spans for more than a minute it is complete. |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
My question is I want to dump trace after it is done, I don't know when It is done, but I know before a trace is exported to remote server, it must be already done.
Is there any config or interface I can use so that I can make a double-write, so I can dump trace locally?
Beta Was this translation helpful? Give feedback.
All reactions