Skip to content

Commit

Permalink
Merge pull request #118860 from cockroachdb/blathers/backport-release…
Browse files Browse the repository at this point in the history
…-23.2-118787

release-23.2: ui: take non-negative derivative of full scan chart
  • Loading branch information
xinhaoz committed Feb 16, 2024
2 parents 84ccac3 + 2a4b64c commit 50e23f4
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -213,17 +213,17 @@ export default function (props: GraphDashboardProps) {
isKvGraph={false}
sources={nodeSources}
tenantSource={tenantSource}
tooltip={`The total number of full table/index scans ${tooltipSelection}.`}
tooltip={`The total number of full table/index scans per second ${tooltipSelection}.`}
showMetricsInTooltip={true}
>
<Axis label="full scans">
<Axis label="full scans per second">
{_.map(nodeIDs, node => (
<Metric
key={node}
name="cr.node.sql.full.scan.count"
title={nodeDisplayName(nodeDisplayNameByID, node)}
sources={[node]}
downsampleMax
nonNegativeRate
/>
))}
</Axis>
Expand Down

0 comments on commit 50e23f4

Please sign in to comment.