mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
740 B
16 lines
740 B
6 years ago
|
hdrhistogram
|
||
|
============
|
||
|
|
||
|
[![Build Status](https://travis-ci.org/codahale/hdrhistogram.png?branch=master)](https://travis-ci.org/codahale/hdrhistogram)
|
||
|
|
||
|
A pure Go implementation of the [HDR Histogram](https://github.com/HdrHistogram/HdrHistogram).
|
||
|
|
||
|
> A Histogram that supports recording and analyzing sampled data value counts
|
||
|
> across a configurable integer value range with configurable value precision
|
||
|
> within the range. Value precision is expressed as the number of significant
|
||
|
> digits in the value recording, and provides control over value quantization
|
||
|
> behavior across the value range and the subsequent value resolution at any
|
||
|
> given level.
|
||
|
|
||
|
For documentation, check [godoc](http://godoc.org/github.com/codahale/hdrhistogram).
|