tracing-forest
Preserve contextual coherence among trace data from concurrent tasks.
Overview
tracing is a framework for instrumenting programs to collect structured
and async-aware diagnostics via the Subscriber trait. The
tracing-subscriber crate provides tools for composing Subscribers
from smaller units. This crate extends tracing-subscriber by providing
ForestLayer, a Layer that preserves contextual coherence of trace
data from concurrent tasks when logging.
This crate is intended for programs running many nontrivial and disjoint
tasks concurrently, like server backends. Unlike other Subscribers
which simply keep track of the context of an event, tracing-forest preserves
the contextual coherence when writing logs even in parallel contexts, allowing
readers to easily trace a sequence of events from the same task.
tracing-forest is intended for authoring applications.
Getting started
The easiest way to get started is to enable all features. Do this by
adding the following to your Cargo.toml file:
= { = "0.3", = ["full"] }
Then, add tracing_forest::init to your main function:
init;
Contextual coherence in action
Similar to this crate, the tracing-tree crate collects and writes trace
data as a tree. Unlike this crate, it doesn't maintain contextual coherence
in parallel contexts.
Observe the below program, which simulates serving multiple clients concurrently.
use info;
use ;
use HierarchicalLayer;
async
async
tracing-tree isn't intended for concurrent use, and this is demonstrated
by the output of the program:
conn id=2
conn id=0
conn id=1
23ms INFO step 0, id=2
84ms INFO step 0, id=1
94ms INFO step 1, id=2
118ms INFO step 0, id=0
130ms INFO step 1, id=1
193ms INFO step 2, id=2
217ms INFO step 1, id=0
301ms INFO step 2, id=1
326ms INFO step 2, id=0
We can instead use tracing-forest as a drop-in replacement for tracing-tree.
use info;
use ;
use ForestLayer;
async
async
Now we can easily trace what happened:
INFO conn [ 150µs | 100.00% ] id: 1
INFO ┝━ i [info]: step 0 | id: 1
INFO ┝━ i [info]: step 1 | id: 1
INFO ┕━ i [info]: step 2 | id: 1
INFO conn [ 343µs | 100.00% ] id: 0
INFO ┝━ i [info]: step 0 | id: 0
INFO ┝━ i [info]: step 1 | id: 0
INFO ┕━ i [info]: step 2 | id: 0
INFO conn [ 233µs | 100.00% ] id: 2
INFO ┝━ i [info]: step 0 | id: 2
INFO ┝━ i [info]: step 1 | id: 2
INFO ┕━ i [info]: step 2 | id: 2
License
tracing-forest is open-source software, distributed under the MIT license.