fast-telemetry 0.3.0

High-performance, cache-friendly telemetry primitives and export formats for Rust
Documentation
1
2
3
4
5
6
7
8
#[cfg(feature = "bench-tools")]
include!("../../bench/workloads/span_contention.rs");

#[cfg(not(feature = "bench-tools"))]
fn main() {
    eprintln!("bench_span_contention requires --features bench-tools");
    std::process::exit(1);
}