File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
pkg/ui/workspaces/db-console/src
views/reports/containers/transactionDiagnosticsHistory Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ export let jobsResume: string;
41
41
export let jobsCancel : string ;
42
42
export let statementsTable : string ;
43
43
export let statementDiagnostics : string ;
44
+ export let transactionDiagnostics : string ;
44
45
export let statementsSql : string ;
45
46
export let statementsRetries : string ;
46
47
export let transactionRetryErrorReference : string ;
@@ -102,6 +103,7 @@ export const recomputeDocsURLs = () => {
102
103
jobsCancel = docsURL ( "cancel-job" ) ;
103
104
statementsTable = docsURL ( "ui-statements-page.html" ) ;
104
105
statementDiagnostics = docsURL ( "ui-statements-page.html#diagnostics" ) ;
106
+ transactionDiagnostics = docsURL ( "transaction-diagnostics.html" ) ;
105
107
statementsSql = docsURL ( "ui-statements-page.html#sql-statement-fingerprints" ) ;
106
108
statementsRetries = docsURL ( "transactions.html#transaction-retries" ) ;
107
109
transactionRetryErrorReference = docsURL (
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ import {
29
29
} from "src/redux/alerts" ;
30
30
import { trackCancelDiagnosticsBundleAction } from "src/redux/analyticsActions" ;
31
31
import { trackDownloadDiagnosticsBundle } from "src/util/analytics" ;
32
- import { statementDiagnostics } from "src/util/docs" ;
32
+ import { transactionDiagnostics } from "src/util/docs" ;
33
33
import { trustIcon } from "src/util/trust" ;
34
34
35
35
import "./transactionDiagnosticsHistoryView.styl" ;
@@ -252,11 +252,11 @@ export const TransactionDiagnosticsHistoryView: React.FC<
252
252
icon = { EmptyTableIcon }
253
253
message = {
254
254
"Transaction diagnostics can help when troubleshooting issues with specific transactions. " +
255
- "The diagnostic bundle can be activated from individual transaction pages and will include EXPLAIN" +
255
+ "The diagnostic bundle can be activated from a builtin function and will include EXPLAIN" +
256
256
" plans, table statistics, and traces for all statements in the transaction."
257
257
}
258
258
footer = {
259
- < Anchor href = { statementDiagnostics } target = "_blank" >
259
+ < Anchor href = { transactionDiagnostics } target = "_blank" >
260
260
Learn more about transaction diagnostics
261
261
</ Anchor >
262
262
}
You can’t perform that action at this time.
0 commit comments