Skip to content

Commit

Permalink
improve histogram consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
dolik-rce authored and knyar committed Aug 24, 2023
1 parent 67edfee commit 0d790d0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions prometheus.lua
Original file line number Diff line number Diff line change
Expand Up @@ -607,6 +607,9 @@ local function observe(self, value, label_values)
-- _sum metric.
c:incr(keys[2], value)

-- the last bucket (le="Inf").
c:incr(keys[self.bucket_count+3], 1)

local seen = false
-- check in reverse order, otherwise we will always
-- need to traverse the whole table.
Expand All @@ -618,8 +621,6 @@ local function observe(self, value, label_values)
break
end
end
-- the last bucket (le="Inf").
c:incr(keys[self.bucket_count+3], 1)
end

-- Delete all metrics for a given gauge, counter or a histogram.
Expand Down

0 comments on commit 0d790d0

Please sign in to comment.