-
Notifications
You must be signed in to change notification settings - Fork 463
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
Support the quantile for response time #257
Comments
There are other histogram implementations/structures that seems worth considering: |
@sboisson CKMS: |
If you are using Prometheus, you can calculate quantiles by implementing Prometheus' Native Histogram (OpenTelemetry's Exponential Histogram). |
Agreed, you definitely want to use something like Prometheus native histograms. Directly exposing quantiles like the older Prometheus "Summary" metrics is not useful as the data can't be aggregated over multiple instances. |
It should be important for the module users to fetch the response time quantile for various use cases.
I consider that it is suitable for using
libgkc
which is the library within the high performance http serverh2o
https://github.com/h2o/h2o/tree/master/deps/libgkc
According this code, it follows the algorithm which is written in this paper. Thus it is efficiency spatial complexity for that calculate.
https://www.cis.upenn.edu/~sanjeev/papers/sigmod01_quantiles.pdf
The text was updated successfully, but these errors were encountered: