You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Only more advanced users of Prometheus metrics really uses buckets/histograms. By removing metrics buckets, we will reduce in over 60% the amount of processing and byte output in our metrics endpoint with no loss in quality.
Currently we have something like this for each metrics/label combination:
On 13 May 2021, at 10:43, Gilliard Macedo ***@***.***> wrote:
From labbsr0x/servlet-monitor#31
Only more advanced users of Prometheus metrics really uses buckets/histograms. By removing metrics buckets, we will reduce in over 60% the amount of processing and byte output in our metrics endpoint with no loss in quality.
Currently we have something like this for each metrics/label combination:
request_seconds_bucket 1
request_seconds_bucket 2
request_seconds_bucket 3
request_seconds_bucket 4
request_seconds_bucket +inf
request_seconds_sum
request_seconds_count
response_size_bytes
By removing buckets, we would reduce to something like
request_seconds_sum
request_seconds_count
response_size_bytes
Proposal
Buckets metrics made optional for request_seconds and dependency_request_seconds
Disable buckets output by default (will only generate _sum and _count metrics for each request)
Only enable buckets if configured explicitly using existing param "buckets" with values like "0.1,0.3,2,10" for example
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or unsubscribe.
From labbsr0x/servlet-monitor#31
Only more advanced users of Prometheus metrics really uses buckets/histograms. By removing metrics buckets, we will reduce in over 60% the amount of processing and byte output in our metrics endpoint with no loss in quality.
Currently we have something like this for each metrics/label combination:
By removing buckets, we would reduce to something like
Proposal
The text was updated successfully, but these errors were encountered: