tracing-calltree 0.1.2

Always-on hierarchical profiling for Rust tracing spans with rolling latency statistics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![forbid(unsafe_code)]
#![doc = include_str!("../README.md")]

mod builder;
mod display;
mod layer;
mod sample;
mod snapshot;
mod stats;
mod tree;

pub use builder::{CallTree, CallTreeBuilder, InternalStats};
pub use layer::CallTreeLayer;
pub use snapshot::{CallTreeSnapshot, NodeSnapshot};
pub use stats::TimingStats;