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 `}
-
{"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 "}
The gray bar indicates the mean number of rows read from disk. The
@@ -458,11 +449,7 @@ export const statisticsTableTitles: StatisticTableTitleType = {
The gray bar indicates the mean number of bytes read from disk.
@@ -503,11 +490,7 @@ export const statisticsTableTitles: StatisticTableTitleType = {
The gray bar indicates the mean number of rows written to disk.
@@ -552,11 +535,12 @@ export const statisticsTableTitles: StatisticTableTitleType = {
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 = {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 `}
-
The gray bar indicates the average max memory usage. The blue bar
@@ -679,11 +655,7 @@ export const statisticsTableTitles: StatisticTableTitleType = {
If this value is 0, the statement was executed on a single node.
@@ -727,7 +699,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", );