diff --git a/pkg/ui/workspaces/cluster-ui/src/statsTableUtil/statsTableUtil.tsx b/pkg/ui/workspaces/cluster-ui/src/statsTableUtil/statsTableUtil.tsx index 192d700c541e..35e4f028364f 100644 --- a/pkg/ui/workspaces/cluster-ui/src/statsTableUtil/statsTableUtil.tsx +++ b/pkg/ui/workspaces/cluster-ui/src/statsTableUtil/statsTableUtil.tsx @@ -17,7 +17,6 @@ import { statementDiagnostics, statementsRetries, statementsSql, - statementsTimeInterval, readFromDisk, writtenToDisk, planningExecutionTime, @@ -344,11 +343,7 @@ export const statisticsTableTitles: StatisticTableTitleType = { content={ <>

- {`Cumulative number of executions of ${contentModifier} with this fingerprint${fingerprintModifier} within the last hour or specified `} - - time interval - - .  + {`Cumulative number of executions of ${contentModifier} with this fingerprint${fingerprintModifier} within the specified time interval.`}

{"The bar indicates the ratio of runtime success (gray) to "} @@ -409,15 +404,11 @@ export const statisticsTableTitles: StatisticTableTitleType = { content={ <>

- {"Aggregation of all rows "} + {"Average (mean) number of rows "} read from disk - {` across all operators for ${contentModifier} with this fingerprint${fingerprintModifier} within the last hour or specified `} - - time interval - - .  + {` per execution for ${contentModifier} with this fingerprint${fingerprintModifier} within the specified time interval.`}

The gray bar indicates the mean number of rows read from disk. The @@ -458,11 +449,7 @@ export const statisticsTableTitles: StatisticTableTitleType = { read from disk - {` across all operators for ${contentModifier} with this fingerprint${fingerprintModifier} within the last hour or specified `} - - time interval - - .  + {` across all operators for ${contentModifier} with this fingerprint${fingerprintModifier} within the specified time interval.`}

The gray bar indicates the mean number of bytes read from disk. @@ -503,11 +490,7 @@ export const statisticsTableTitles: StatisticTableTitleType = { written to disk - {` across all operators for ${contentModifier} with this fingerprint${fingerprintModifier} within the last hour or specified `} - - time interval - - .  + {` across all operators for ${contentModifier} with this fingerprint${fingerprintModifier} within the specified time interval.`}

The gray bar indicates the mean number of rows written to disk. @@ -552,11 +535,12 @@ export const statisticsTableTitles: StatisticTableTitleType = { planning and execution time - {` of ${contentModifier} with this fingerprint${fingerprintModifier} within the last hour or specified time interval. `} + {` of ${contentModifier} with this fingerprint${fingerprintModifier} within the specified time interval.`}

The gray bar indicates the mean latency. The blue bar indicates - one standard deviation from the mean. + one standard deviation from the mean. This time does not include + the time it takes to stream results back to the client.

} @@ -593,11 +577,7 @@ export const statisticsTableTitles: StatisticTableTitleType = { in contention - {` with other ${contentModifier} within the last hour or specified `} - - time interval - - .  + {` with other ${contentModifier} within the specified time interval.`}

The gray bar indicates mean contention time. The blue bar @@ -634,11 +614,7 @@ export const statisticsTableTitles: StatisticTableTitleType = { content={ <>

- {`Maximum memory used by a ${contentModifier} with this fingerprint${fingerprintModifier} at any time during its execution within the last hour or specified `} - - time interval - - .  + {`Maximum memory used by a ${contentModifier} with this fingerprint${fingerprintModifier} at any time during its execution within the specified time interval.`}

The gray bar indicates the average max memory usage. The blue bar @@ -679,11 +655,7 @@ export const statisticsTableTitles: StatisticTableTitleType = { data transferred over the network - {` (e.g., between regions and nodes) for ${contentModifier} with this fingerprint${fingerprintModifier} within the last hour or specified `} - - time interval - - .  + {` (e.g., between regions and nodes) for ${contentModifier} with this fingerprint${fingerprintModifier} within the specified time interval.`}

If this value is 0, the statement was executed on a single node. @@ -727,7 +699,7 @@ export const statisticsTableTitles: StatisticTableTitleType = { retries - {` of ${contentModifier} with this fingerprint${fingerprintModifier} within the last hour or specified time interval.`} + {` (including internal and automatic retries) of ${contentModifier} with this fingerprint${fingerprintModifier} within the specified time interval.`}

} @@ -760,7 +732,7 @@ export const statisticsTableTitles: StatisticTableTitleType = {

% of runtime all {contentModifier} with this fingerprint {fingerprintModifier} represent, compared to the cumulative runtime - of all queries within the last hour or specified time interval. + of all queries within the specified time interval.

} > diff --git a/pkg/ui/workspaces/cluster-ui/src/util/docs.ts b/pkg/ui/workspaces/cluster-ui/src/util/docs.ts index 3ca175209b43..cfa4a5f01c3a 100644 --- a/pkg/ui/workspaces/cluster-ui/src/util/docs.ts +++ b/pkg/ui/workspaces/cluster-ui/src/util/docs.ts @@ -57,9 +57,6 @@ export const statementsSql = docsURL( export const statementsRetries = docsURL( "transactions.html#transaction-retries", ); -export const statementsTimeInterval = docsURL( - "ui-statements-page.html#time-interval", -); export const readFromDisk = docsURL( "architecture/life-of-a-distributed-transaction.html#reads-from-the-storage-layer", ); diff --git a/pkg/ui/workspaces/db-console/src/util/docs.ts b/pkg/ui/workspaces/db-console/src/util/docs.ts index 0b7fc8de8d10..21f037259b14 100644 --- a/pkg/ui/workspaces/db-console/src/util/docs.ts +++ b/pkg/ui/workspaces/db-console/src/util/docs.ts @@ -71,9 +71,6 @@ export const statementsRetries = docsURL( export const transactionRetryErrorReference = docsURL( "transaction-retry-error-reference.html", ); -export const statementsTimeInterval = docsURL( - "ui-statements-page.html#time-interval", -); export const capacityMetrics = docsURL( "ui-cluster-overview-page.html#capacity-metrics", );