Fix docstring references to renamed native histogram fields / functions.
Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
7352ab7f80
commit
1b19d5f458
|
@ -401,7 +401,7 @@ type HistogramOpts struct {
|
||||||
// Histogram by a Prometheus server with that feature enabled (requires
|
// Histogram by a Prometheus server with that feature enabled (requires
|
||||||
// Prometheus v2.40+). Sparse buckets are exponential buckets covering
|
// Prometheus v2.40+). Sparse buckets are exponential buckets covering
|
||||||
// the whole float64 range (with the exception of the “zero” bucket, see
|
// the whole float64 range (with the exception of the “zero” bucket, see
|
||||||
// SparseBucketsZeroThreshold below). From any one bucket to the next,
|
// NativeHistogramZeroThreshold below). From any one bucket to the next,
|
||||||
// the width of the bucket grows by a constant
|
// the width of the bucket grows by a constant
|
||||||
// factor. NativeHistogramBucketFactor provides an upper bound for this
|
// factor. NativeHistogramBucketFactor provides an upper bound for this
|
||||||
// factor (exception see below). The smaller
|
// factor (exception see below). The smaller
|
||||||
|
@ -432,7 +432,7 @@ type HistogramOpts struct {
|
||||||
// bucket. For best results, this should be close to a bucket
|
// bucket. For best results, this should be close to a bucket
|
||||||
// boundary. This is usually the case if picking a power of two. If
|
// boundary. This is usually the case if picking a power of two. If
|
||||||
// NativeHistogramZeroThreshold is left at zero,
|
// NativeHistogramZeroThreshold is left at zero,
|
||||||
// DefSparseBucketsZeroThreshold is used as the threshold. To configure
|
// DefNativeHistogramZeroThreshold is used as the threshold. To configure
|
||||||
// a zero bucket with an actual threshold of zero (i.e. only
|
// a zero bucket with an actual threshold of zero (i.e. only
|
||||||
// observations of precisely zero will go into the zero bucket), set
|
// observations of precisely zero will go into the zero bucket), set
|
||||||
// NativeHistogramZeroThreshold to the NativeHistogramZeroThresholdZero
|
// NativeHistogramZeroThreshold to the NativeHistogramZeroThresholdZero
|
||||||
|
@ -817,7 +817,7 @@ func (h *histogram) observe(v float64, bucket int) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// limitSparsebuckets applies a strategy to limit the number of populated sparse
|
// limitBuckets applies a strategy to limit the number of populated sparse
|
||||||
// buckets. It's generally best effort, and there are situations where the
|
// buckets. It's generally best effort, and there are situations where the
|
||||||
// number can go higher (if even the lowest resolution isn't enough to reduce
|
// number can go higher (if even the lowest resolution isn't enough to reduce
|
||||||
// the number sufficiently, or if the provided counts aren't fully updated yet
|
// the number sufficiently, or if the provided counts aren't fully updated yet
|
||||||
|
|
Loading…
Reference in New Issue