5 个版本

0.1.4 2021 年 11 月 25 日
0.1.3 2021 年 3 月 11 日
0.1.2 2020 年 4 月 4 日
0.1.1 2020 年 4 月 4 日
0.1.0 2020 年 4 月 4 日

#141性能分析

Download history • Rust 包仓库 5817/week @ 2024-03-13 • Rust 包仓库 4855/week @ 2024-03-20 • Rust 包仓库 5301/week @ 2024-03-27 • Rust 包仓库 5152/week @ 2024-04-03 • Rust 包仓库 6468/week @ 2024-04-10 • Rust 包仓库 8385/week @ 2024-04-17 • Rust 包仓库 7409/week @ 2024-04-24 • Rust 包仓库 4630/week @ 2024-05-01 • Rust 包仓库 1374/week @ 2024-05-08 • Rust 包仓库 5624/week @ 2024-05-15 • Rust 包仓库 4385/week @ 2024-05-22 • Rust 包仓库 6023/week @ 2024-05-29 • Rust 包仓库 5722/week @ 2024-06-05 • Rust 包仓库 6178/week @ 2024-06-12 • Rust 包仓库 6990/week @ 2024-06-19 • Rust 包仓库 4566/week @ 2024-06-26 • Rust 包仓库

25,565 每月下载量
3 个 crate 中使用 (通过 tract)

MIT/Apache

19KB
355 代码行

Readings 的分析探测工具

Readings 的目标是使进程关键指标的探测尽可能简单。

这是必须嵌入客户端代码的探测库。

请参阅 Readings

// this is optional but the cost may be worth it. YMMV. It instruments
// Rust global allocator.
readings_probe::instrumented_allocator!();

fn main() -> readings_probe::ReadingsResult<()> {
    // setup the probe
    let mut probe =
        readings_probe::Probe::new(std::fs::File::create("readings.out").unwrap()).unwrap();

    // We will use an AtomicI64 to communicate a user-defined metrics ("progress") to the probe.
    let progress = probe.register_i64("progress".to_string())?;

    // Starts the probe (1sec i a lot. heartbeat can be realistically set as low as a few millis).
    probe.spawn_heartbeat(std::time::Duration::from_millis(1000))?;

    // do some stuff, update progress
    let percent_done = 12;
    progress.store(percent_done, std::sync::atomic::Ordering::Relaxed);

    // do more stuff, log an event
    probe.log_event("about to get crazy")?;

    // still more stuff, and another event
    probe.log_event("done")?;
    Ok(())
}

依赖关系

~0.4–1MB
~21K SLoC