OSDN Git Service

Merge pull request #41 from Bytom/dev
[bytom/vapor.git] / vendor / github.com / codahale / hdrhistogram / README.md
1 hdrhistogram
2 ============
3
4 [![Build Status](https://travis-ci.org/codahale/hdrhistogram.png?branch=master)](https://travis-ci.org/codahale/hdrhistogram)
5
6 A pure Go implementation of the [HDR Histogram](https://github.com/HdrHistogram/HdrHistogram).
7
8 > A Histogram that supports recording and analyzing sampled data value counts
9 > across a configurable integer value range with configurable value precision
10 > within the range. Value precision is expressed as the number of significant
11 > digits in the value recording, and provides control over value quantization
12 > behavior across the value range and the subsequent value resolution at any
13 > given level.
14
15 For documentation, check [godoc](http://godoc.org/github.com/codahale/hdrhistogram).