[O11y][Redis Enterprise] Fix intervals in the visualizations of Overview dashboard - #9464
Conversation
…Overview dashboard
| "isBucketed": false, | ||
| "label": "Total requests (ops/sec)", | ||
| "operationType": "average", | ||
| "operationType": "last_value", |
There was a problem hiding this comment.
Here in the label it says - Total Requests (ops/sec).
If it is a rate such as ops/sec, using average may not be entirely wrong. If it is a counter, showing last value or rate of change of the value will be appropriate.
So, what does the field description of redisenterprise.node.total_req.value: * say in the official documentation? I can't find it in the fields.yml.
There was a problem hiding this comment.
Here is the official document. I agree to your point that If it is a rate such as ops/sec, using average may not be entirely wrong. Let me revert it for the visualizations that showing rate such as ops/sec or bytes/sec. Thanks!
| "isBucketed": false, | ||
| "label": "System CPU time", | ||
| "operationType": "average", | ||
| "operationType": "last_value", |
There was a problem hiding this comment.
If this is a gauge type, average makes more sense than last value.
| "dataType": "number", | ||
| "filter": { | ||
| "language": "kuery", | ||
| "query": "redisenterprise.node.cpu_user.value: *" |
There was a problem hiding this comment.
If this is a gauge type, average makes more sense than last value.
| "isBucketed": false, | ||
| "label": "Connections", | ||
| "operationType": "average", | ||
| "operationType": "last_value", |
There was a problem hiding this comment.
Is this a counter or gauge? If counter, last_value make sense. Else gauge.
The change from avg -> last value is significant as part of this viz change. Can you create a table having information of
name of field, gauge or counter , recommended operationType value.
It will be easy to review and recommend.
|
@agithomas If any field used in the visualization is of format |
|
@harnish-elastic ,If i have to choose an aggregation other than average, it will be as follows.
If I have to think of a mistake, it will be only @tommyers-elastic , can you please validate this please? |
|
If you choose to use an aggregation function other than Avg() on any metrics other than |
8828a65 to
3084f77
Compare
| # newer versions go on top | ||
| - version: "0.10.0" | ||
| changes: | ||
| - description: Fix aggregations, intervals and fields used in the visualizations of Overview dashboard. |
There was a problem hiding this comment.
I suppose this description is not relevant anymore. Please correct.
Also, please update the PR description / title
There was a problem hiding this comment.
Updated, thanks!
| # newer versions go on top | ||
| - version: "0.10.0" | ||
| changes: | ||
| - description: Fix intervals in the visualizations of Overview dashboard. |
There was a problem hiding this comment.
| - description: Fix intervals in the visualizations of Overview dashboard. | |
| - description: Fix intervals in the visualizations of the Overview dashboard. |
There was a problem hiding this comment.
Since, this is a bug fix, can we change version to 0.9.1 and type bugfix ?
There was a problem hiding this comment.
Updated, thanks!
💚 Build Succeeded
History
cc @harnish-elastic |
|
|
Package redisenterprise - 0.9.1 containing this change is available at https://epr.elastic.co/search?package=redisenterprise |





Proposed commit message
Checklist
changelog.ymlfile.Related issues
Screenshots
Before
After