Skip to content

epickrram/rustogram

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rustogram

Build status

A Rust port of HdrHistogram.

features

  • Implements the signed 64-bit histogram implementation
  • Binary compatible storage/retrieval of histogram values
  • Serialisation compatible (v2 only, scaling not supported)

usage

extern crate rustogram;
#[test]
fn it_works() {
	let mut h = rustogram::histogram::new_histogram(10000, 3);
	h.record_value(42);
	println!("Total recorded samples: {}", h.get_total_count());
}

About

rust port of hdr-histogram

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages