-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
ui: remove unnecessary metric name prefixes #129149
ui: remove unnecessary metric name prefixes #129149
Conversation
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.
Looks great! Thanks for doing this! Just a minor comment.
Reviewable status: complete! 1 of 0 LGTMs obtained (waiting on @dhartunian and @kyle-a-wong)
pkg/ui/workspaces/db-console/src/views/cluster/containers/nodeGraphs/dashboards/overload.tsx
line 205 at r1 (raw file):
name="cr.node.admission.wait_durations.elastic-stores-p99" title={ "Elastic (Background)" +
We could make do without the (Background)
, since we have used elastic several times on this page now.
Metrics keyed by nodeID and prefixed with long strings become very difficult to read on the dashboard pages since they take up too much horizontal space. In all of these cases, the context provided by the graph title and Y axis label provide enough context to omit verbose legend labels. Resolves: cockroachdb#128046 Release note (ui change): some metric charts on the overview and replication pages have more terse legends to facilitate easier browsing.
84f6a4f
to
1c75c25
Compare
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.
Reviewable status: complete! 0 of 0 LGTMs obtained (and 1 stale) (waiting on @aadityasondhi and @kyle-a-wong)
pkg/ui/workspaces/db-console/src/views/cluster/containers/nodeGraphs/dashboards/overload.tsx
line 205 at r1 (raw file):
Previously, aadityasondhi (Aaditya Sondhi) wrote…
We could make do without the
(Background)
, since we have used elastic several times on this page now.
Done.
TFTR! bors r=aadityasondhi |
Based on the specified backports for this PR, I applied new labels to the following linked issue(s). Please adjust the labels as needed to match the branches actually affected by the issue(s), including adding any known older branches. Issue #128046: branch-release-23.2, branch-release-24.1, branch-release-24.2. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
Encountered an error creating backports. Some common things that can go wrong:
You might need to create your backport manually using the backport tool. error creating merge commit from 1c75c25 to blathers/backport-release-23.2-129149: POST https://api.github.com/repos/cockroachdb/cockroach/merges: 409 Merge conflict [] you may need to manually resolve merge conflicts with the backport tool. Backport to branch 23.2.x failed. See errors above. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
Metrics keyed by nodeID and prefixed with long strings become very difficult to read on the dashboard pages since they take up too much horizontal space. In all of these cases, the context provided by the graph title and Y axis label provide enough context to omit verbose legend labels.
Resolves: #128046
Release note (ui change): some metric charts on the overview and replication pages have more terse legends to facilitate easier browsing.