Skip to content

Commit 1f93f64

Browse files
balintzsbwplotka
andcommitted
Fix CumulativeCount value of +Inf bucket created from exemplar (#1148)
* Fix `CumulativeCount` value of `+Inf` bucket created from exemplar Signed-off-by: Balint Zsilavecz <[email protected]> * Update prometheus/metric_test.go Co-authored-by: Bartlomiej Plotka <[email protected]> Signed-off-by: Balint Zsilavecz <[email protected]> * Clarify description of implicit `+Inf` bucket count Signed-off-by: Balint Zsilavecz <[email protected]> * Fix test variables Signed-off-by: Balint Zsilavecz <[email protected]> Signed-off-by: Balint Zsilavecz <[email protected]> Co-authored-by: Bartlomiej Plotka <[email protected]>
1 parent 8cc2b6c commit 1f93f64

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

prometheus/histogram.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -613,7 +613,7 @@ func (h *constHistogram) Write(out *dto.Metric) error {
613613
// to send it to Prometheus in the Collect method.
614614
//
615615
// buckets is a map of upper bounds to cumulative counts, excluding the +Inf
616-
// bucket.
616+
// bucket. The +Inf bucket is implicit, and its value is equal to the provided count.
617617
//
618618
// NewConstHistogram returns an error if the length of labelValues is not
619619
// consistent with the variable labels in Desc or if Desc is invalid.

prometheus/metric.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ func (m *withExemplarsMetric) Write(pb *dto.Metric) error {
187187
} else {
188188
// The +Inf bucket should be explicitly added if there is an exemplar for it, similar to non-const histogram logic in https://github.com/prometheus/client_golang/blob/main/prometheus/histogram.go#L357-L365.
189189
b := &dto.Bucket{
190-
CumulativeCount: proto.Uint64(pb.Histogram.Bucket[len(pb.Histogram.GetBucket())-1].GetCumulativeCount()),
190+
CumulativeCount: proto.Uint64(pb.Histogram.GetSampleCount()),
191191
UpperBound: proto.Float64(math.Inf(1)),
192192
Exemplar: e,
193193
}

prometheus/metric_test.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -79,10 +79,14 @@ func TestWithExemplarsMetric(t *testing.T) {
7979
}
8080
}
8181

82-
infBucket := metric.GetHistogram().Bucket[len(metric.GetHistogram().Bucket)-1].GetUpperBound()
82+
infBucket := metric.GetHistogram().Bucket[len(metric.GetHistogram().Bucket)-1]
8383

84-
if infBucket != math.Inf(1) {
85-
t.Errorf("want %v, got %v", math.Inf(1), infBucket)
84+
if want, got := math.Inf(1), infBucket.GetUpperBound(); want != got {
85+
t.Errorf("want %v, got %v", want, got)
86+
}
87+
88+
if want, got := uint64(4711), infBucket.GetCumulativeCount(); want != got {
89+
t.Errorf("want %v, got %v", want, got)
8690
}
8791
})
8892
}

0 commit comments

Comments
 (0)