fast-telemetry 0.1.1

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/cache_contention.rs");

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