-
Notifications
You must be signed in to change notification settings - Fork 458
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
[HA Proxy ]Corrected incorrect aggregation function used in visualisation and dashboard #8204
[HA Proxy ]Corrected incorrect aggregation function used in visualisation and dashboard #8204
Conversation
🌐 Coverage report
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
@agithomas, Can we briefly summarise the issues in the earlier aggregation and what was fixed. It's rather tricky to get a summary from the json file changes. |
For all the fields that are having metric_type as All sum() functions are replaced with max() functions when field is having metric_type |
Package haproxy - 1.8.6 containing this change is available at https://epr.elastic.co/search?package=haproxy |
Details
HAProxy dashboard uses incorrect aggregation functions in multiple dashboards and visualisation.
For all the fields that are having metric_type as counter, sum() function is used presently in the dashboard. This shows incorrect values in the dashboard compared to the /stats dashboard of haproxy.
All sum() functions are replaced with max() functions when field is having metric_type counter. This correction is also needed for TSDB compatibility for counter type fields to not show errors when using sum() function
Proposed commit message
HAProxy dashboard uses incorrect aggregation functions in multiple dashboards and visualisation. This is corrected in this version.
Checklist
changelog.yml
file.Author's Checklist
How to test this PR locally
Related issues
Screenshots