1 unstable release

0.5.0 Feb 19, 2019

#3 in #hdr-histogram

Download history 195/week @ 2024-11-15 244/week @ 2024-11-22 263/week @ 2024-11-29 274/week @ 2024-12-06 278/week @ 2024-12-13 121/week @ 2024-12-20 15/week @ 2024-12-27 107/week @ 2025-01-03 241/week @ 2025-01-10 232/week @ 2025-01-17 271/week @ 2025-01-24 324/week @ 2025-01-31 342/week @ 2025-02-07 327/week @ 2025-02-14 404/week @ 2025-02-21 230/week @ 2025-02-28

1,368 downloads per month
Used in streaming-harness

MIT license

12KB
188 lines

hdrhist is a small footprint hdr histogram in rust. It collects u64 samples in the full u64 value range with precision of 5 most significant bits. You can add new samples in O(1) time (a handful of cycles), and it will never reallocate.

Crates.io Documentation

Adding the dependency

Add the following to your [dependecies] in Cargo.toml.

hdrhist = "^<version>"

where <version> is the desired version of the library. The latest version is Crates.io.

Documentation

The reference documentation is at docs.rs/hdrhist.


lib.rs:

hdrhist is a small footprint hdr histogram.

It collects u64 values in the full u64 value range with precision of 5 most significant bits. You can add new samples in O(1) time (a handful of cycles), and it will never reallocate.

No runtime deps