feat(query): histogram_avg PromQL function - #2302
Open
saathvikrv wants to merge 7 commits into
Open
Conversation
…on cumul histograms
…ter correction correctly.
This file contains hidden or 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
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.
Pull Request checklist
Current behavior : (link exiting issues here : https://help.github.com/articles/basic-writing-and-formatting-syntax/#referencing-issues-and-pull-requests)
PromQL Query to calculate average from histogram time series:
sum(rate(http_request_latency::sum{_ns_="App-0",_ws_="demo"}[5m])) / sum(rate(http_request_latency::count{_ns_="App-0",_ws_="demo"}[5m]))New behavior :
Implemented new PromQL aggregation function - havg
New Query:
histogram_avg(rate(http_request_latency{_ns_="App-0",_ws_="demo"}[5m]))Testing :
Benchmark Results :
Acknowledgments to @vishramachandran who mentored me with this project.