openmetrics/histograms: improve code clarity

If buckets thresholds are to be taken as "less than or equal to", then
using the less than or equal to operator seems sensible.
This commit is contained in:
Kim Alvefur 2021-12-27 16:05:12 +01:00
parent 569df0581e
commit 079a39c216
2 changed files with 2 additions and 2 deletions

View file

@ -102,7 +102,7 @@ end
function histogram_metric_mt:sample(value)
-- According to the I-D, values must be part of all buckets
for i, bucket in pairs(self) do
if "number" == type(i) and bucket.threshold >= value then
if "number" == type(i) and value <= bucket.threshold then
bucket.count = bucket.count + 1
end
end

View file

@ -115,7 +115,7 @@ end
function histogram_metric_mt:sample(value)
-- According to the I-D, values must be part of all buckets
for i, bucket in pairs(self) do
if "number" == type(i) and bucket.threshold >= value then
if "number" == type(i) and value <= bucket.threshold then
bucket.count = bucket.count + 1
self._impl:push_counter_delta(bucket._full_name, 1)
end