Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

The Prometheus documentation about histogram_quantile uses the following query as an example to get the 90th percentile of the duration of the requests over 10m.

histogram_quantile(0.9, rate(http_request_duration_seconds_bucket[10m]))

But why would I want to calculate this over a timespan? If I omitted the rate and the range vector like below, wouldn't I get a more accurate measurement?

histogram_quantile(0.9, http_request_duration_seconds_bucket)

I have read other answers about the topic, but I still can't understand what does the rate function do in a histogram_quantile.

question from:https://stackoverflow.com/questions/66050834/what-is-the-effect-of-using-rate-in-histogram-quantile

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
880 views
Welcome To Ask or Share your Answers For Others

1 Answer

Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...