-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
statementsPage.tsx
605 lines (563 loc) · 18.6 KB
/
statementsPage.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
// Copyright 2021 The Cockroach Authors.
//
// Use of this software is governed by the Business Source License
// included in the file licenses/BSL.txt.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0, included in the file
// licenses/APL.txt.
import React from "react";
import { RouteComponentProps } from "react-router-dom";
import { isNil, merge, forIn } from "lodash";
import Helmet from "react-helmet";
import moment, { Moment } from "moment";
import classNames from "classnames/bind";
import { Loading } from "src/loading";
import { PageConfig, PageConfigItem } from "src/pageConfig";
import { ColumnDescriptor, SortSetting } from "src/sortedtable";
import { Search } from "src/search";
import { Pagination } from "src/pagination";
import { DateRange } from "src/dateRange";
import { TableStatistics } from "../tableStatistics";
import {
Filter,
Filters,
defaultFilters,
calculateActiveFilters,
getFiltersFromQueryString,
getTimeValueInSeconds,
} from "../queryFilter";
import {
appAttr,
getMatchParamByName,
calculateTotalWorkload,
unique,
containAny,
queryByName,
} from "src/util";
import {
AggregateStatistics,
populateRegionNodeForStatements,
makeStatementsColumns,
StatementsSortedTable,
} from "../statementsTable";
import {
getLabel,
StatisticTableColumnKeys,
} from "../statsTableUtil/statsTableUtil";
import {
ActivateStatementDiagnosticsModal,
ActivateDiagnosticsModalRef,
} from "src/statementsDiagnostics";
import { ISortedTablePagination } from "../sortedtable";
import styles from "./statementsPage.module.scss";
import { EmptyStatementsPlaceholder } from "./emptyStatementsPlaceholder";
import { cockroach } from "@cockroachlabs/crdb-protobuf-client";
type IStatementDiagnosticsReport = cockroach.server.serverpb.IStatementDiagnosticsReport;
import sortableTableStyles from "src/sortedtable/sortedtable.module.scss";
import ColumnsSelector from "../columnsSelector/columnsSelector";
import { SelectOption } from "../multiSelectCheckbox/multiSelectCheckbox";
import { UIConfigState } from "../store";
import { StatementsRequest } from "src/api/statementsApi";
import Long from "long";
const cx = classNames.bind(styles);
const sortableTableCx = classNames.bind(sortableTableStyles);
// Most of the props are supposed to be provided as connected props
// from redux store.
// StatementsPageDispatchProps, StatementsPageStateProps, and StatementsPageOuterProps interfaces
// provide convenient definitions for `mapDispatchToProps`, `mapStateToProps` and props that
// have to be provided by parent component.
export interface StatementsPageDispatchProps {
refreshStatements: (req?: StatementsRequest) => void;
refreshStatementDiagnosticsRequests: () => void;
resetSQLStats: () => void;
dismissAlertMessage: () => void;
onActivateStatementDiagnostics: (statement: string) => void;
onDiagnosticsModalOpen?: (statement: string) => void;
onSearchComplete?: (results: AggregateStatistics[]) => void;
onPageChanged?: (newPage: number) => void;
onSortingChange?: (
name: string,
columnTitle: string,
ascending: boolean,
) => void;
onDiagnosticsReportDownload?: (report: IStatementDiagnosticsReport) => void;
onFilterChange?: (value: string) => void;
onStatementClick?: (statement: string) => void;
onColumnsChange?: (selectedColumns: string[]) => void;
onDateRangeChange: (start: Moment, end: Moment) => void;
}
export interface StatementsPageStateProps {
statements: AggregateStatistics[];
dateRange: [Moment, Moment];
statementsError: Error | null;
apps: string[];
databases: string[];
totalFingerprints: number;
lastReset: string;
columns: string[];
nodeRegions: { [key: string]: string };
isTenant?: UIConfigState["isTenant"];
}
export interface StatementsPageState {
sortSetting: SortSetting;
search?: string;
pagination: ISortedTablePagination;
filters?: Filters;
activeFilters?: number;
}
export type StatementsPageProps = StatementsPageDispatchProps &
StatementsPageStateProps &
RouteComponentProps<unknown>;
function statementsRequestFromProps(
props: StatementsPageProps,
): cockroach.server.serverpb.StatementsRequest {
return new cockroach.server.serverpb.StatementsRequest({
combined: true,
start: Long.fromNumber(props.dateRange[0].unix()),
end: Long.fromNumber(props.dateRange[1].unix()),
});
}
export class StatementsPage extends React.Component<
StatementsPageProps,
StatementsPageState
> {
activateDiagnosticsRef: React.RefObject<ActivateDiagnosticsModalRef>;
constructor(props: StatementsPageProps) {
super(props);
const filters = getFiltersFromQueryString(
this.props.history.location.search,
);
const defaultState = {
sortSetting: {
// Sort by Execution Count column as default option.
ascending: false,
columnTitle: "executionCount",
},
pagination: {
pageSize: 20,
current: 1,
},
search: "",
filters: filters,
activeFilters: calculateActiveFilters(filters),
};
const stateFromHistory = this.getStateFromHistory();
this.state = merge(defaultState, stateFromHistory);
this.activateDiagnosticsRef = React.createRef();
}
static defaultProps: Partial<StatementsPageProps> = {
isTenant: false,
};
getStateFromHistory = (): Partial<StatementsPageState> => {
const { history } = this.props;
const searchParams = new URLSearchParams(history.location.search);
const ascending = searchParams.get("ascending") || undefined;
const columnTitle = searchParams.get("columnTitle") || undefined;
const searchQuery = searchParams.get("q") || undefined;
return {
sortSetting: {
ascending: ascending === "true",
columnTitle,
},
search: searchQuery,
};
};
syncHistory = (params: Record<string, string | undefined>) => {
const { history } = this.props;
const currentSearchParams = new URLSearchParams(history.location.search);
forIn(params, (value, key) => {
if (!value) {
currentSearchParams.delete(key);
} else {
currentSearchParams.set(key, value);
}
});
history.location.search = currentSearchParams.toString();
history.replace(history.location);
};
changeSortSetting = (ss: SortSetting): void => {
this.setState({
sortSetting: ss,
});
this.syncHistory({
ascending: ss.ascending.toString(),
columnTitle: ss.columnTitle,
});
if (this.props.onSortingChange) {
this.props.onSortingChange("Statements", ss.columnTitle, ss.ascending);
}
};
changeDateRange = (start: Moment, end: Moment): void => {
if (this.props.onDateRangeChange) {
this.props.onDateRangeChange(start, end);
}
};
resetTime = (): void => {
// Default range to reset to is one hour ago.
this.changeDateRange(
moment.utc().subtract(1, "hours"),
moment.utc().add(1, "minute"),
);
};
selectApp = (value: string): void => {
if (value == "All") value = "";
const { history, onFilterChange } = this.props;
history.location.pathname = `/statements/${encodeURIComponent(value)}`;
history.replace(history.location);
this.resetPagination();
if (onFilterChange) {
onFilterChange(value);
}
};
resetPagination = (): void => {
this.setState(prevState => {
return {
pagination: {
current: 1,
pageSize: prevState.pagination.pageSize,
},
};
});
};
refreshStatements = (): void => {
const req = statementsRequestFromProps(this.props);
this.props.refreshStatements(req);
};
componentDidMount(): void {
this.refreshStatements();
if (!this.props.isTenant) {
this.props.refreshStatementDiagnosticsRequests();
}
}
componentDidUpdate = (
__: StatementsPageProps,
prevState: StatementsPageState,
): void => {
if (this.state.search && this.state.search !== prevState.search) {
this.props.onSearchComplete(this.filteredStatementsData());
}
this.refreshStatements();
if (!this.props.isTenant) {
this.props.refreshStatementDiagnosticsRequests();
}
};
componentWillUnmount(): void {
this.props.dismissAlertMessage();
}
onChangePage = (current: number): void => {
const { pagination } = this.state;
this.setState({ pagination: { ...pagination, current } });
this.props.onPageChanged(current);
};
onSubmitSearchField = (search: string): void => {
this.setState({ search });
this.resetPagination();
this.syncHistory({
q: search,
});
};
onSubmitFilters = (filters: Filters): void => {
this.setState({
filters: {
...this.state.filters,
...filters,
},
activeFilters: calculateActiveFilters(filters),
});
this.resetPagination();
this.syncHistory({
app: filters.app,
timeNumber: filters.timeNumber,
timeUnit: filters.timeUnit,
sqlType: filters.sqlType,
database: filters.database,
regions: filters.regions,
nodes: filters.nodes,
});
this.selectApp(filters.app);
};
onClearSearchField = (): void => {
this.setState({ search: "" });
this.syncHistory({
q: undefined,
});
};
onClearFilters = (): void => {
this.setState({
filters: {
...defaultFilters,
},
activeFilters: 0,
});
this.resetPagination();
this.syncHistory({
app: undefined,
timeNumber: undefined,
timeUnit: undefined,
sqlType: undefined,
database: undefined,
regions: undefined,
nodes: undefined,
});
this.selectApp("");
};
filteredStatementsData = (): AggregateStatistics[] => {
const { search, filters } = this.state;
const { statements, nodeRegions, isTenant } = this.props;
const timeValue = getTimeValueInSeconds(filters);
const sqlTypes =
filters.sqlType.length > 0
? filters.sqlType.split(",").map(function(sqlType: string) {
// Adding "Type" to match the value on the Statement
// Possible values: TypeDDL, TypeDML, TypeDCL and TypeTCL
return "Type" + sqlType;
})
: [];
const databases =
filters.database.length > 0 ? filters.database.split(",") : [];
const regions =
filters.regions.length > 0 ? filters.regions.split(",") : [];
const nodes = filters.nodes.length > 0 ? filters.nodes.split(",") : [];
// Return statements filtered by the values selected on the filter and
// the search text. A statement must match all selected filters to be
// displayed on the table.
// Current filters: search text, database, fullScan, service latency,
// SQL Type, nodes and regions.
return statements
.filter(
statement =>
databases.length == 0 || databases.includes(statement.database),
)
.filter(statement =>
this.state.filters.fullScan ? statement.fullScan : true,
)
.filter(statement =>
search
.split(" ")
.every(val =>
statement.label.toLowerCase().includes(val.toLowerCase()),
),
)
.filter(
statement =>
statement.stats.service_lat.mean >= timeValue ||
timeValue === "empty",
)
.filter(
statement =>
sqlTypes.length == 0 || sqlTypes.includes(statement.stats.sql_type),
)
.filter(
// The statement must contain at least one value from the selected regions
// list if the list is not empty.
// If the cluster is a tenant cluster we don't care
// about regions.
statement =>
isTenant ||
regions.length == 0 ||
(statement.stats.nodes &&
containAny(
statement.stats.nodes.map(
node => nodeRegions[node.toString()],
regions,
),
regions,
)),
)
.filter(
// The statement must contain at least one value from the selected nodes
// list if the list is not empty.
// If the cluster is a tenant cluster we don't care
// about nodes.
statement =>
isTenant ||
nodes.length == 0 ||
(statement.stats.nodes &&
containAny(
statement.stats.nodes.map(node => "n" + node),
nodes,
)),
);
};
renderStatements = () => {
const { pagination, search, filters, activeFilters } = this.state;
const {
statements,
databases,
match,
lastReset,
onDiagnosticsReportDownload,
onStatementClick,
resetSQLStats,
columns: userSelectedColumnsToShow,
onColumnsChange,
nodeRegions,
isTenant,
} = this.props;
const appAttrValue = getMatchParamByName(match, appAttr);
const selectedApp = appAttrValue || "";
const appOptions = [{ value: "all", label: "All" }];
this.props.apps.forEach(app => appOptions.push({ value: app, label: app }));
const data = this.filteredStatementsData();
const totalWorkload = calculateTotalWorkload(data);
const totalCount = data.length;
const isEmptySearchResults = statements?.length > 0 && search?.length > 0;
// If the cluster is a tenant cluster we don't show info
// about nodes/regions.
const nodes = isTenant
? []
: Object.keys(nodeRegions)
.map(n => Number(n))
.sort();
const regions = isTenant
? []
: unique(nodes.map(node => nodeRegions[node.toString()])).sort();
populateRegionNodeForStatements(statements, nodeRegions, isTenant);
// Creates a list of all possible columns,
// hiding nodeRegions if is not multi-region and
// hiding columns that won't be displayed for tenants.
const columns = makeStatementsColumns(
statements,
selectedApp,
totalWorkload,
nodeRegions,
"statement",
isTenant,
search,
this.activateDiagnosticsRef,
onDiagnosticsReportDownload,
onStatementClick,
)
.filter(c => !(c.name === "regionNodes" && regions.length < 2))
.filter(c => !(isTenant && c.hideIfTenant));
const isColumnSelected = (c: ColumnDescriptor<AggregateStatistics>) => {
return (
(userSelectedColumnsToShow === null && c.showByDefault !== false) || // show column if list of visible was never defined and can be show by default.
(userSelectedColumnsToShow !== null &&
userSelectedColumnsToShow.includes(c.name)) || // show column if user changed its visibility.
c.alwaysShow === true // show column if alwaysShow option is set explicitly.
);
};
// Iterate over all available columns and create list of SelectOptions with initial selection
// values based on stored user selections in local storage and default column configs.
// Columns that are set to alwaysShow are filtered from the list.
const tableColumns = columns
.filter(c => !c.alwaysShow)
.map(
(c): SelectOption => ({
label: getLabel(c.name as StatisticTableColumnKeys, "statement"),
value: c.name,
isSelected: isColumnSelected(c),
}),
);
// List of all columns that will be displayed based on the column selection.
const displayColumns = columns.filter(c => isColumnSelected(c));
return (
<div>
<PageConfig>
<PageConfigItem>
<Search
onSubmit={this.onSubmitSearchField as any}
onClear={this.onClearSearchField}
defaultValue={search}
/>
</PageConfigItem>
<PageConfigItem>
<Filter
onSubmitFilters={this.onSubmitFilters}
appNames={appOptions}
dbNames={databases}
regions={regions}
nodes={nodes.map(n => "n" + n)}
activeFilters={activeFilters}
filters={filters}
showDB={true}
showSqlType={true}
showScan={true}
showRegions={regions.length > 1}
showNodes={nodes.length > 1}
/>
</PageConfigItem>
<PageConfigItem>
<DateRange
start={this.props.dateRange[0]}
end={this.props.dateRange[1]}
onSubmit={this.changeDateRange}
/>
</PageConfigItem>
<PageConfigItem>
<button className={cx("reset-btn")} onClick={this.resetTime}>
reset time
</button>
</PageConfigItem>
</PageConfig>
<section className={sortableTableCx("cl-table-container")}>
<div>
<ColumnsSelector
options={tableColumns}
onSubmitColumns={onColumnsChange}
/>
<TableStatistics
pagination={pagination}
lastReset={lastReset}
search={search}
totalCount={totalCount}
arrayItemName="statements"
tooltipType="statement"
activeFilters={activeFilters}
onClearFilters={this.onClearFilters}
resetSQLStats={resetSQLStats}
/>
</div>
<StatementsSortedTable
className="statements-table"
data={data}
columns={displayColumns}
sortSetting={this.state.sortSetting}
onChangeSortSetting={this.changeSortSetting}
renderNoResult={
<EmptyStatementsPlaceholder
isEmptySearchResults={isEmptySearchResults}
/>
}
pagination={pagination}
/>
</section>
<Pagination
pageSize={pagination.pageSize}
current={pagination.current}
total={data.length}
onChange={this.onChangePage}
/>
</div>
);
};
render() {
const {
location,
refreshStatementDiagnosticsRequests,
onActivateStatementDiagnostics,
onDiagnosticsModalOpen,
} = this.props;
const app = queryByName(location, appAttr);
return (
<div className={cx("root", "table-area")}>
<Helmet title={app ? `${app} App | Statements` : "Statements"} />
<h3 className={cx("base-heading")}>Statements</h3>
<Loading
loading={isNil(this.props.statements)}
error={this.props.statementsError}
render={this.renderStatements}
/>
<ActivateStatementDiagnosticsModal
ref={this.activateDiagnosticsRef}
activate={onActivateStatementDiagnostics}
refreshDiagnosticsReports={refreshStatementDiagnosticsRequests}
onOpenModal={onDiagnosticsModalOpen}
/>
</div>
);
}
}