Avoid "online serving system".

This commit is contained in:
beorn7 2015-02-19 16:03:24 +01:00
parent 000ef45157
commit 9eaf3705d2
1 changed files with 3 additions and 3 deletions

View File

@ -50,9 +50,9 @@ type Histogram interface {
var (
// DefBuckets are the default Histogram buckets. The default buckets are
// tailored to broadly measure response time in seconds for a typical online
// serving system. Most likely, however, you will be required to define buckets
// customized to your use case.
// tailored to broadly measure the response time (in seconds) of a
// network service. Most likely, however, you will be required to define
// buckets customized to your use case.
DefBuckets = []float64{.005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5, 10}
errBucketLabelNotAllowed = fmt.Errorf(