Avoid "online serving system".
This commit is contained in:
parent
000ef45157
commit
9eaf3705d2
|
@ -50,9 +50,9 @@ type Histogram interface {
|
||||||
|
|
||||||
var (
|
var (
|
||||||
// DefBuckets are the default Histogram buckets. The default buckets are
|
// DefBuckets are the default Histogram buckets. The default buckets are
|
||||||
// tailored to broadly measure response time in seconds for a typical online
|
// tailored to broadly measure the response time (in seconds) of a
|
||||||
// serving system. Most likely, however, you will be required to define buckets
|
// network service. Most likely, however, you will be required to define
|
||||||
// customized to your use case.
|
// buckets customized to your use case.
|
||||||
DefBuckets = []float64{.005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5, 10}
|
DefBuckets = []float64{.005, .01, .025, .05, .1, .25, .5, 1, 2.5, 5, 10}
|
||||||
|
|
||||||
errBucketLabelNotAllowed = fmt.Errorf(
|
errBucketLabelNotAllowed = fmt.Errorf(
|
||||||
|
|
Loading…
Reference in New Issue