blocky icon indicating copy to clipboard operation
blocky copied to clipboard

blocky_request_duration_ms_bucket shows artificially inflated data

Open fin444 opened this issue 7 months ago • 2 comments

Please forgive me if I am just misunderstanding how to properly use this metric. On 0.24, buckets appear to be summed upwards in time (not quite sure how to explain this in text), artificially inflating the number of long duration requests. This results in graphs like this:

sum by (le) (increase(blocky_request_duration_ms_bucket{response_type="RESOLVED"}[$__interval:15s]))

image

In fact, the following two queries both give the exact same number:

sum(blocky_request_duration_ms_bucket{le="+Inf"})
sum(blocky_query_total)

fin444 avatar Jul 03 '24 23:07 fin444