mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
openmetrics/histograms: fix incorrect condition for bucketing
The buckets thresholds are to be taken as "less than or equal to". The condition as written in the code did only "less than", not "less than or equal to". That's fixed now.
This commit is contained in:
parent
257f52d826
commit
569df0581e
2 changed files with 2 additions and 2 deletions
|
@ -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 bucket.threshold >= value then
|
||||
bucket.count = bucket.count + 1
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue