Skip to content
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: add lease preference metrics to replication dashboard #116709

Merged
merged 1 commit into from
Dec 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,28 @@ export default function (props: GraphDashboardProps) {
</Axis>
</LineGraph>,

<LineGraph
title="Lease Preferences"
sources={storeSources}
tenantSource={tenantSource}
tooltip={`Details about the conformance of range lease preferences. In
the node view, shows details about ranges the node is
responsible for. In the cluster view, shows details about
ranges all across the cluster.`}
showMetricsInTooltip={true}
>
<Axis label="ranges">
<Metric
name="cr.store.leases.preferences.violating"
title="Lease Preferences Violating"
/>
<Metric
name="cr.store.leases.preferences.less-preferred"
title="Lease Preferences Less Preferred"
/>
</Axis>
</LineGraph>,

<LineGraph
title="Average Replica Queries per Node"
tenantSource={tenantSource}
Expand Down