-
Notifications
You must be signed in to change notification settings - Fork 189
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
return histograms for time metrics #1005
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Keksoj
force-pushed
the
produce-histogram-metrics
branch
from
October 18, 2023 13:34
2e0ddae
to
b13edc4
Compare
Check issue #751 for inspiration |
Keksoj
force-pushed
the
produce-histogram-metrics
branch
from
October 26, 2023 12:18
b13edc4
to
0e42e87
Compare
Keksoj
force-pushed
the
produce-histogram-metrics
branch
from
November 16, 2023 21:34
0e42e87
to
1dd764f
Compare
Keksoj
force-pushed
the
produce-histogram-metrics
branch
3 times, most recently
from
November 20, 2023 12:05
f9a9218
to
aa9df5f
Compare
Keksoj
force-pushed
the
produce-histogram-metrics
branch
from
November 21, 2023 11:53
aa9df5f
to
89da50b
Compare
Keksoj
force-pushed
the
fix-display-in-json-form
branch
2 times, most recently
from
November 27, 2023 14:19
f0ba2cd
to
88fb8cb
Compare
Keksoj
force-pushed
the
fix-display-in-json-form
branch
from
December 6, 2023 16:08
88fb8cb
to
86303a2
Compare
Keksoj
force-pushed
the
produce-histogram-metrics
branch
3 times, most recently
from
January 24, 2024 13:39
8866640
to
0f9f6d7
Compare
Keksoj
changed the title
return histograms for time metrics
draft: return histograms for time metrics
Feb 19, 2024
Keksoj
force-pushed
the
produce-histogram-metrics
branch
3 times, most recently
from
July 3, 2024 13:02
3b5d7f7
to
7ed28fe
Compare
Keksoj
force-pushed
the
produce-histogram-metrics
branch
from
July 8, 2024 09:16
7ed28fe
to
c0ab1fb
Compare
Keksoj
changed the title
draft: return histograms for time metrics
return histograms for time metrics
Jul 8, 2024
This is ready for review! |
llenotre
reviewed
Jul 8, 2024
Keksoj
force-pushed
the
produce-histogram-metrics
branch
6 times, most recently
from
July 11, 2024 08:03
8b43018
to
4894e69
Compare
create local type MetricsMap implement receive_metric function for local types add error management iterate logarithmically (base 2) to produce prometheus buckets optimize the listing of available metrics, with iterators optimize function dump_cluster_metrics
the method would insert non-mergeable backend metrics.
Keksoj
force-pushed
the
produce-histogram-metrics
branch
from
July 11, 2024 14:26
4894e69
to
15ac8eb
Compare
llenotre
approved these changes
Jul 11, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Up until now, time metrics were returned by Sōzu, and rendered in the CLI, as percentiles:
These percentiles are not convertible for a prometheus layer, however.
Since the time metrics are collected by sozu_lib's LocalDrain as hdrhistograms, why not return them in a histogram form as well? This would allow the Sozu prometheus connector to convert them to prometheus metrics.
This PR creates the protobuf type
FilteredHistogram
. Now, for each time metric:Percentiles
metric is produced, for instanceresponse_time
FilteredHistogram
is produced, namedresponse_time_hist