We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
FollowsFrom
(This is followup from #420)
The Registry and fmt::Layer should record all the spans that a given span succeeds. This data will need to be added to DataInner:
Registry
fmt::Layer
DataInner
tracing/tracing-subscriber/src/registry/sharded.rs
Lines 67 to 72 in 773c440
and exposed via the SpanData trait:
SpanData
tracing/tracing-subscriber/src/registry/mod.rs
Lines 162 to 183 in 773c440
Note that FollowsFrom is a singly-linked graph, so that FollowsFrom relationship will need to be stored as a Vec<Id> on DataInner.
Vec<Id>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
(This is followup from #420)
The
Registry
andfmt::Layer
should record all the spans that a given span succeeds. This data will need to be added toDataInner
:tracing/tracing-subscriber/src/registry/sharded.rs
Lines 67 to 72 in 773c440
and exposed via the
SpanData
trait:tracing/tracing-subscriber/src/registry/mod.rs
Lines 162 to 183 in 773c440
Note that
FollowsFrom
is a singly-linked graph, so thatFollowsFrom
relationship will need to be stored as aVec<Id>
onDataInner
.The text was updated successfully, but these errors were encountered: