@yugabytedb/perf-advisor-ui 1.0.78 → 1.0.79
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +80165 -79829
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +187 -19
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -94,6 +94,12 @@ declare enum MetricMeasure {
|
|
|
94
94
|
OUTLIER_TABLES = "Outlier_Tables",
|
|
95
95
|
OUTLIER_DB = "Outlier_Databases"
|
|
96
96
|
}
|
|
97
|
+
declare const METRIC_MEASURE_TEXT: {
|
|
98
|
+
readonly Overall: "Overall";
|
|
99
|
+
readonly Outlier: "nodes";
|
|
100
|
+
readonly Outlier_Tables: "tables";
|
|
101
|
+
readonly Outlier_Databases: "databases";
|
|
102
|
+
};
|
|
97
103
|
interface Anomaly {
|
|
98
104
|
uuid: string;
|
|
99
105
|
metadataUuid: string;
|
|
@@ -124,11 +130,14 @@ declare enum AnomalyCategory {
|
|
|
124
130
|
}
|
|
125
131
|
declare enum AnomalyType {
|
|
126
132
|
SQL_QUERY_LATENCY_INCREASE = "SQL_QUERY_LATENCY_INCREASE",
|
|
127
|
-
HOT_NODE_READS_WRITES = "HOT_NODE_READS_WRITES",
|
|
128
133
|
HOT_NODE_CPU = "HOT_NODE_CPU",
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
134
|
+
HOT_NODE_YSQL_QUERIES = "HOT_NODE_YSQL_QUERIES",
|
|
135
|
+
SLOW_DISKS = "SLOW_DISKS",
|
|
136
|
+
HOT_TABLET = "HOT_TABLET",
|
|
137
|
+
LARGE_TABLET = "LARGE_TABLET",
|
|
138
|
+
UNUSED_INDEX = "UNUSED_INDEX",
|
|
139
|
+
REDUNDANT_INDEX = "REDUNDANT_INDEX",
|
|
140
|
+
RANGE_SHARDING = "RANGE_SHARDING"
|
|
132
141
|
}
|
|
133
142
|
interface NodeInfo {
|
|
134
143
|
name: string;
|
|
@@ -276,9 +285,14 @@ interface QueryWaitEvents {
|
|
|
276
285
|
waitEventType: string;
|
|
277
286
|
waitEvent: string;
|
|
278
287
|
}
|
|
279
|
-
declare const
|
|
288
|
+
declare const GROUP_BY_OPERATIONS_LABELS: {
|
|
289
|
+
readonly Type: "Wait Event Type";
|
|
290
|
+
readonly Class: "Wait Event Class";
|
|
291
|
+
readonly Event: "Wait Event";
|
|
292
|
+
readonly Query: "Query";
|
|
280
293
|
readonly waitEventType: "Wait Event Type";
|
|
281
294
|
readonly waitEvent: "Wait Event";
|
|
295
|
+
readonly 'Client IP': "Client IP";
|
|
282
296
|
};
|
|
283
297
|
declare const GROUP_BY_OPERATIONS: readonly [WaitEventClassification.WAIT_EVENT_TYPE, WaitEventClassification.WAIT_EVENT];
|
|
284
298
|
interface UrlParams {
|
|
@@ -391,7 +405,7 @@ interface UniverseQueryStatsData {
|
|
|
391
405
|
latencyP90: string;
|
|
392
406
|
latencyP99: string;
|
|
393
407
|
}
|
|
394
|
-
interface
|
|
408
|
+
interface PagedStatsResponse {
|
|
395
409
|
data: {
|
|
396
410
|
entities: UniverseQueryStatsData[];
|
|
397
411
|
hasNext: boolean;
|
|
@@ -510,6 +524,15 @@ declare enum ClusterLoadOverallTabs {
|
|
|
510
524
|
ANOMALIES = "Anomalies",
|
|
511
525
|
QUERIES = "Queries"
|
|
512
526
|
}
|
|
527
|
+
declare enum TabletTabs {
|
|
528
|
+
TABLET_OVERVIEW = "Tablet Overview"
|
|
529
|
+
}
|
|
530
|
+
declare enum SqlTabs {
|
|
531
|
+
QUERY_OVERVIEW = "Query Overview"
|
|
532
|
+
}
|
|
533
|
+
declare enum SqlDrilldownTabs {
|
|
534
|
+
PERFORMANCE_METRICS = "Performance Metrics"
|
|
535
|
+
}
|
|
513
536
|
declare enum ClusterLoadSubTabs {
|
|
514
537
|
OVERALL_LOAD = "Overall Load",
|
|
515
538
|
LOAD_BY_DATABASE = "Load by Database"
|
|
@@ -586,6 +609,82 @@ declare const DB_WAIT_EVENT_TYPE_MAPPING: {
|
|
|
586
609
|
IO: string;
|
|
587
610
|
DISK_IO: string;
|
|
588
611
|
};
|
|
612
|
+
interface QueryEvents {
|
|
613
|
+
eps: number;
|
|
614
|
+
waitEventType: string;
|
|
615
|
+
}
|
|
616
|
+
interface TransformedData {
|
|
617
|
+
databaseId: string;
|
|
618
|
+
eps: number;
|
|
619
|
+
events: QueryEvents[];
|
|
620
|
+
firstActive: string;
|
|
621
|
+
lastActive: string;
|
|
622
|
+
latencyAvg: number;
|
|
623
|
+
latencyP90: number;
|
|
624
|
+
latencyP99: number;
|
|
625
|
+
namespaceName: string;
|
|
626
|
+
query: string;
|
|
627
|
+
queryId: string;
|
|
628
|
+
queryType: string;
|
|
629
|
+
rowsAvg: number;
|
|
630
|
+
rps: number;
|
|
631
|
+
totalEpsRatio: number;
|
|
632
|
+
totalTime: number;
|
|
633
|
+
universeId: string;
|
|
634
|
+
}
|
|
635
|
+
interface TransformedDbLoadData {
|
|
636
|
+
name: string;
|
|
637
|
+
connections: number;
|
|
638
|
+
cpuRatio: number;
|
|
639
|
+
rps: number;
|
|
640
|
+
type: string;
|
|
641
|
+
universeId: string;
|
|
642
|
+
eps: number;
|
|
643
|
+
events: QueryEvents[];
|
|
644
|
+
}
|
|
645
|
+
interface TabletResponseMetadata {
|
|
646
|
+
databaseName: string;
|
|
647
|
+
databaseType: string;
|
|
648
|
+
eps: number;
|
|
649
|
+
events: QueryEvents[];
|
|
650
|
+
size: string;
|
|
651
|
+
schemaName: string;
|
|
652
|
+
tableName: string;
|
|
653
|
+
tabletId: string;
|
|
654
|
+
universeId: string;
|
|
655
|
+
totalEpsRatio: number;
|
|
656
|
+
sstSize: string;
|
|
657
|
+
walSize: string;
|
|
658
|
+
partition: string;
|
|
659
|
+
leaderNode: string;
|
|
660
|
+
followerNodes: string[];
|
|
661
|
+
}
|
|
662
|
+
interface TransformedTabletsData {
|
|
663
|
+
databaseName: string;
|
|
664
|
+
databaseType: string;
|
|
665
|
+
eps: number;
|
|
666
|
+
events: QueryEvents[];
|
|
667
|
+
schemaName: string;
|
|
668
|
+
tableName: string;
|
|
669
|
+
tabletId: string;
|
|
670
|
+
universeId: string;
|
|
671
|
+
totalEpsRatio: number;
|
|
672
|
+
size: string;
|
|
673
|
+
leaderNode: string;
|
|
674
|
+
followerNodes: string[];
|
|
675
|
+
}
|
|
676
|
+
interface TransformedNodeLoadData {
|
|
677
|
+
name: string;
|
|
678
|
+
availabilityZone: string;
|
|
679
|
+
cloud: string;
|
|
680
|
+
connections: number;
|
|
681
|
+
eps: number;
|
|
682
|
+
events: QueryEvents[];
|
|
683
|
+
region: string;
|
|
684
|
+
rps: number;
|
|
685
|
+
totalEpsRatio: number;
|
|
686
|
+
universeId: string;
|
|
687
|
+
}
|
|
589
688
|
|
|
590
689
|
interface MetricsAnalysisEntryProps {
|
|
591
690
|
universeUuid: string;
|
|
@@ -655,13 +754,17 @@ declare enum QUERY_KEY {
|
|
|
655
754
|
fetchAnomalyGroupsById = "fetchAnomalyGroupsById",
|
|
656
755
|
getUniverseMetadata = "getUniverseMetadata",
|
|
657
756
|
fetchMetricsGraphs = "fetchMetricsGraphs",
|
|
658
|
-
|
|
757
|
+
fetchLoadDbStatsPage = "fetchLoadDbStatsPage",
|
|
758
|
+
fetchTabletsStatsPage = "fetchTabletsStatsPage",
|
|
759
|
+
fetchNodeLoadStatsPage = "fetchNodeLoadStatsPage"
|
|
659
760
|
}
|
|
660
761
|
declare class ApiService {
|
|
661
762
|
fetchAnomalies: (universeUuid: string, startTime?: Date | null, endTime?: Date | null, apiUrl?: string) => Promise<Anomaly[]>;
|
|
662
763
|
fetchAnomaliesPage: (universeUuid: string, pageno: number, apiUrl?: string, records_to_fetch?: number, startTime?: Date | null, endTime?: Date | null, category?: any, searchInput?: string) => Promise<axios.AxiosResponse<Anomaly[]>>;
|
|
663
764
|
fetchQueriesPage: (universeUuid: string, payload: any) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
664
|
-
|
|
765
|
+
fetchLoadDbStatsPage: (universeUuid: string, payload: any) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
766
|
+
fetchTabletStatsPage: (universeUuid: string, payload: any, getClusterDetails: () => any) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
767
|
+
fetchNodeLoadStatsPage: (universeUuid: string, payload: any) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
665
768
|
fetchQueriesStatsPage: (universeUuid: string, payload: any, getClusterDetails: () => any, filteredLegends: string[]) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
666
769
|
fetchNamespaceSchemas: (universeUuid: string, namespaceName: string, apiUrl?: string) => Promise<string[]>;
|
|
667
770
|
fetchQueryStats: (universeUuid: string, payload: any, apiUrl?: string) => Promise<string[]>;
|
|
@@ -766,10 +869,11 @@ interface OutlierSelectorProps {
|
|
|
766
869
|
outlierType: SplitMode;
|
|
767
870
|
onOutlierTypeSelected: (selectedOption: SplitMode) => void;
|
|
768
871
|
onNumNodesChanged: (numNodes: number) => void;
|
|
872
|
+
metricMeasure?: MetricMeasure;
|
|
769
873
|
showNumNodesInput?: boolean;
|
|
770
874
|
showNumNodesSelector?: boolean;
|
|
771
875
|
}
|
|
772
|
-
declare const OutlierSelector: ({ metricOutlierSelectors, selectedNumNodes, outlierType, onOutlierTypeSelected, onNumNodesChanged, showNumNodesInput, showNumNodesSelector }: OutlierSelectorProps) => JSX.Element;
|
|
876
|
+
declare const OutlierSelector: ({ metricOutlierSelectors, selectedNumNodes, outlierType, onOutlierTypeSelected, onNumNodesChanged, metricMeasure, showNumNodesInput, showNumNodesSelector }: OutlierSelectorProps) => JSX.Element;
|
|
773
877
|
|
|
774
878
|
interface ClusterRegionSelectorProps$1 {
|
|
775
879
|
selectedItem: string;
|
|
@@ -818,16 +922,20 @@ declare const CPU_COUNT = "cpu_count";
|
|
|
818
922
|
declare const metricSplitSelectors: readonly [{
|
|
819
923
|
readonly value: MetricMeasure.OVERALL;
|
|
820
924
|
readonly label: "Overall";
|
|
925
|
+
readonly text: "Overall";
|
|
821
926
|
}, {
|
|
822
927
|
readonly value: MetricMeasure.OUTLIER;
|
|
823
928
|
readonly label: "Outlier Nodes";
|
|
824
929
|
readonly k8label: "Outlier Pods";
|
|
930
|
+
readonly text: "nodes";
|
|
825
931
|
}, {
|
|
826
932
|
readonly value: MetricMeasure.OUTLIER_TABLES;
|
|
827
933
|
readonly label: "Outlier Tables";
|
|
934
|
+
readonly text: "tables";
|
|
828
935
|
}, {
|
|
829
936
|
readonly value: MetricMeasure.OUTLIER_DB;
|
|
830
937
|
readonly label: "Outlier Databases";
|
|
938
|
+
readonly text: "databases";
|
|
831
939
|
}];
|
|
832
940
|
declare const otherSplitSelectors: readonly [{
|
|
833
941
|
readonly value: MetricMeasure.OVERALL;
|
|
@@ -836,6 +944,7 @@ declare const otherSplitSelectors: readonly [{
|
|
|
836
944
|
readonly value: MetricMeasure.OUTLIER;
|
|
837
945
|
readonly label: "Outlier Nodes";
|
|
838
946
|
readonly k8label: "Outlier Pods";
|
|
947
|
+
readonly text: "nodes";
|
|
839
948
|
}];
|
|
840
949
|
declare const metricOutlierSelectors: readonly [{
|
|
841
950
|
readonly value: "TOP";
|
|
@@ -862,14 +971,6 @@ declare const SQL_QUERY_REQUEST_GRAPHS: string[];
|
|
|
862
971
|
declare const CQL_QUERY_REQUEST_GRAPHS: string[];
|
|
863
972
|
declare const BACKGROUND_QUERY_REQUEST_GRAPHS: string[];
|
|
864
973
|
declare const CATALOG_READ_REQUEST_GRAPH = "ysql_connections_per_sec";
|
|
865
|
-
declare const ASH_GROUPBY_VALUES: {
|
|
866
|
-
WAIT_EVENT_COMPONENT: string;
|
|
867
|
-
WAIT_EVENT_CLASS: string;
|
|
868
|
-
WAIT_EVENT_TYPE: string;
|
|
869
|
-
WAIT_EVENT: string;
|
|
870
|
-
CLIENT_NODE_IP: string;
|
|
871
|
-
QUERY: string;
|
|
872
|
-
};
|
|
873
974
|
declare const DEFAULT_RECORDS_PER_PAGE: number[];
|
|
874
975
|
declare const ANOMALY_CATEGORY_LIST: AnomalyCategory[];
|
|
875
976
|
declare const GLOBAL_RUNTIME_CONFIG = "00000000-0000-0000-0000-000000000000";
|
|
@@ -925,8 +1026,9 @@ declare const filterDurations: readonly [{
|
|
|
925
1026
|
declare const CATEGORY_HEADER_DATA_MAP: Record<any, any>;
|
|
926
1027
|
declare const QUERY_DETAILS = "QUERY DETAILS";
|
|
927
1028
|
declare const QUERY_TAG = "QUERY";
|
|
928
|
-
declare const
|
|
1029
|
+
declare const DB_CAPS_TAG = "DATABASE";
|
|
929
1030
|
declare const QUERY_TYPE_TAG = "QUERY TYPE";
|
|
1031
|
+
declare const DB_TYPE_TAG = "DATABASE TYPE";
|
|
930
1032
|
declare const DB_TAG = "Database";
|
|
931
1033
|
declare const USER_TAG = "User";
|
|
932
1034
|
declare const TABLE_TAG = "Table";
|
|
@@ -1149,6 +1251,65 @@ declare const COLORS: string[];
|
|
|
1149
1251
|
declare const NAME_COLOR_MAPPING: {
|
|
1150
1252
|
[key: string]: string;
|
|
1151
1253
|
};
|
|
1254
|
+
declare const TOOLTIP_TEXT: {
|
|
1255
|
+
WAIT_EVENT_TYPE_CHART_TOOLTIP: string;
|
|
1256
|
+
ACTIVE_SESSIONS_PER_SECOND_TOOLTIP: string;
|
|
1257
|
+
SST_SIZE_TOOLTIP: string;
|
|
1258
|
+
WAL_SIZE_TOOLTIP: string;
|
|
1259
|
+
PARTITION_TOOLTIP: string;
|
|
1260
|
+
SIZE_TOOLTIP: string;
|
|
1261
|
+
TABLET_ID_TOOLTIP: string;
|
|
1262
|
+
DATABASE_TYPE_TOOLTIP: string;
|
|
1263
|
+
LEADER_NODE_TOOLTIP: string;
|
|
1264
|
+
FOLLOWER_NODES_TOOLTIP: string;
|
|
1265
|
+
EPS_TOOLTIP: string;
|
|
1266
|
+
TOTAL_EPS_RATIO_TABLET_TOOLTIP: string;
|
|
1267
|
+
TOTAL_EPS_RATIO_QUERY_LEVEL_TABLET_TOOLTIP: string;
|
|
1268
|
+
DATABASE_NAME_TOOLTIP: string;
|
|
1269
|
+
SCHEMA_NAME_TOOLTIP: string;
|
|
1270
|
+
TABLE_NAME_TOOLTIP: string;
|
|
1271
|
+
UNIVERSE_ID_TOOLTIP: string;
|
|
1272
|
+
NODE_NAME_TOOLTIP: string;
|
|
1273
|
+
NODE_REGION_ZONE_TOOLTIP: string;
|
|
1274
|
+
CONNECTIONS_TOOLTIP: string;
|
|
1275
|
+
TOTAL_EPS_RATIO_NODE_TOOLTIP: string;
|
|
1276
|
+
EPS_NODE_TOOLTIP: string;
|
|
1277
|
+
EVENTS_NODE_TOOLTIP: string;
|
|
1278
|
+
RPS_NODE_TOOLTIP: string;
|
|
1279
|
+
TOTAL_EPS_RATIO_QUERY_TOOLTIP: string;
|
|
1280
|
+
FIRST_ACTIVE_TIME_TOOLTIP: string;
|
|
1281
|
+
LAST_ACTIVE_TIME_TOOLTIP: string;
|
|
1282
|
+
AVG_LATENCY_TOOLTIP: string;
|
|
1283
|
+
LATENCY_P90_TOOLTIP: string;
|
|
1284
|
+
LATENCY_P99_TOOLTIP: string;
|
|
1285
|
+
QUERY_TYPE_TOOLTIP: string;
|
|
1286
|
+
TOTAL_TIME_TOOLTIP: string;
|
|
1287
|
+
ROWS_AVG_TOOLTIP: string;
|
|
1288
|
+
RPS_TOOLTIP: string;
|
|
1289
|
+
ACTIVE_SESSIONS_PER_SECOND_QUERY_TOOLTIP: string;
|
|
1290
|
+
EVENTS_QUERY_TOOLTIP: string;
|
|
1291
|
+
QUERY_TEXT_TOOLTIP: string;
|
|
1292
|
+
};
|
|
1293
|
+
declare const HISTORICAL_QUERY_DATA_LABELS: {
|
|
1294
|
+
DB_ID: string;
|
|
1295
|
+
TOTAL_EPS_RATIO: string;
|
|
1296
|
+
EPS: string;
|
|
1297
|
+
EVENTS: string;
|
|
1298
|
+
FIRST_ACTIVE_TIME: string;
|
|
1299
|
+
LAST_ACTIVE_TIME: string;
|
|
1300
|
+
AVG_LATENCY: string;
|
|
1301
|
+
LATENCY_P90: string;
|
|
1302
|
+
LATENCY_P99: string;
|
|
1303
|
+
NAMESPACE_NAME: string;
|
|
1304
|
+
QUERY: string;
|
|
1305
|
+
QUERY_ID: string;
|
|
1306
|
+
QUERY_TYPE: string;
|
|
1307
|
+
ROWS_AVG: string;
|
|
1308
|
+
RPS: string;
|
|
1309
|
+
TOTAL_TIME: string;
|
|
1310
|
+
UNIVERSE_ID: string;
|
|
1311
|
+
};
|
|
1312
|
+
declare const ADD_COLUMNS_BUTTON_TEXT = "Add Columns";
|
|
1152
1313
|
declare const DEFAULT_ERROR_MESSAGES: {
|
|
1153
1314
|
UNIVERSE_PA_STATUS_ERROR: string;
|
|
1154
1315
|
UNIVERSE_DETAILS_ERROR: string;
|
|
@@ -1161,12 +1322,19 @@ declare const DEFAULT_ERROR_MESSAGES: {
|
|
|
1161
1322
|
QUERIES_GRAPHS_FETCH_ERROR: string;
|
|
1162
1323
|
METRICS_GRAPHS_FETCH_ERROR: string;
|
|
1163
1324
|
HISTORICAL_QUERY_DATA_FETCH_ERROR: string;
|
|
1325
|
+
TABLETS_DATA_FETCH_ERROR: string;
|
|
1326
|
+
NODE_LOAD_DATA_FETCH_ERROR: string;
|
|
1164
1327
|
CLUSTER_LOAD_FETCH_ERROR: string;
|
|
1165
1328
|
QUERY_STATS_FETCH_ERROR: string;
|
|
1166
1329
|
DB_STATS_FETCH_ERROR: string;
|
|
1167
1330
|
};
|
|
1168
1331
|
declare const VISIBLE_QUERY_METADATA_COLUMNS = "visibleQueryMetadataColumns";
|
|
1169
1332
|
declare const VISIBLE_DB_LOAD_METADATA_COLUMNS = "visibleDbLoadMetadataColumns";
|
|
1333
|
+
declare const VISIBLE_TABLETS_METADATA_COLUMNS = "visibleTabletsMetadataColumns";
|
|
1334
|
+
declare const VISIBLE_TABLET_DRILLDOWN_METADATA_COLUMNS = "visibleTabletDrilldownMetadataColumns";
|
|
1335
|
+
declare const VISIBLE_NODE_LOAD_METADATA_COLUMNS = "visibleNodeLoadMetadataColumns";
|
|
1336
|
+
declare const CPU_TEXT = "CPU";
|
|
1337
|
+
declare const IO_TEXT = "IO";
|
|
1170
1338
|
|
|
1171
1339
|
declare function isDefinedNotNull(obj: any): boolean;
|
|
1172
1340
|
declare function isEmptyArray(arr: any): boolean;
|
|
@@ -1190,4 +1358,4 @@ interface YBThemeWrapperProps {
|
|
|
1190
1358
|
*/
|
|
1191
1359
|
declare const YBThemeWrapper: React.FC<YBThemeWrapperProps>;
|
|
1192
1360
|
|
|
1193
|
-
export { ACTIVE_SESSION_HISOTRY_EPS_CLIENT_NODE, ACTIVE_SESSION_HISTORY_EPS_GLOBAL, ACTIVE_SESSION_HISTORY_QUERY_EVENTS, ALL, ALL_REGIONS, ALL_ZONES, ANOMALY_CATEGORY_LIST, ANOMALY_FILTER_DURATION_OPTIONS, ANOMALY_TAG, ANOMALY_TYPE_TO_NAME_MAP, ASH,
|
|
1361
|
+
export { ACTIVE_SESSION_HISOTRY_EPS_CLIENT_NODE, ACTIVE_SESSION_HISTORY_EPS_GLOBAL, ACTIVE_SESSION_HISTORY_QUERY_EVENTS, ADD_COLUMNS_BUTTON_TEXT, ALL, ALL_REGIONS, ALL_ZONES, ANOMALY_CATEGORY_LIST, ANOMALY_FILTER_DURATION_OPTIONS, ANOMALY_TAG, ANOMALY_TYPE_TO_NAME_MAP, ASH, AggregatedLineSettings, Aggregation, Anomaly, AnomalyCategory, AnomalyDetails, AnomalyDetectionStatus, AnomalyDetectionStatusText, AnomalyGroup, AnomalyInstance, AnomalyResponse, AnomalyType, AnomalyTypeFilter, AppName, AttachUniversePayload, AuthDetails, BACKGROUND_QUERY_REQUEST_GRAPHS, CATALOG_READ_REQUEST_GRAPH, CATEGORY_HEADER_DATA_MAP, COLORS, CORES, CPU_CORES, CPU_COUNT, CPU_TEXT, CQL_QUERY_REQUEST_GRAPHS, ChartType, ClusterLoadOverallTabs, ClusterLoadResponseData, ClusterLoadSubTabs, ClusterNodeInfo, ClusterNodeListMetadata, ClusterRegionSelector, Column, ConfigureUniverseMetadata, DB_CAPS_TAG, DB_TAG, DB_TYPE_TAG, DB_WAIT_EVENT_TYPE_MAPPING, DEFAULT_ERROR_MESSAGES, DEFAULT_RECORDS_PER_PAGE, ELLIPSIS, FormattedAnomalyRca, GLOBAL_RUNTIME_CONFIG, GROUP_BY_OPERATIONS, GROUP_BY_OPERATIONS_LABELS, GraphAxisData, GraphFilters, GraphMetadata, GraphRequestParams, GraphResponse, GraphSettings, GraphType, GroupEventsParam, HISTORICAL_QUERY_DATA_LABELS, IN_DEVELOPMENT_MODE, IO_TEXT, InsightsTabs, MAX_OUTLIER_NUM_NODES, METRICS_OUTLIER_DATABASES_STORAGE_KEY, METRICS_OUTLIER_TABLES_STORAGE_KEY, METRICS_SESSION_STORAGE_KEY, METRIC_DB_RESOURCES_WITH_GRAPHS, METRIC_FONT, METRIC_MEASURE_TEXT, METRIC_NAMES, METRIC_RESOURCES_WITH_GRAPHS, METRIC_TABLES_RESOURCES_WITH_GRAPHS, METRIC_TABS, METRIC_TABS_DATABASES, METRIC_TABS_TABLES, MIN_OUTLIER_NUM_NODES, MORE, MetadataFields, MetricConsts, MetricMeasure, MetricOrigin, MetricSplitSelector, MetricsAnalysisEntry, MetricsAnalysisEntryProps, NAME_COLOR_MAPPING, NodeData, NodeDataCloudInfo, NodeDataMetrics, NodeDetails, NodeInfo, NodeState, OutlierSelector, PAUrlParams, PagedStatsResponse, PerfAdvisorAPI, PerfAdvisorEntry, PrimaryDashboardViewTabs, QUERIES, QUERY_DETAILS, QUERY_KEY, QUERY_TAG, QUERY_TYPE_TAG, QueryEvents, QueryPageParams, QueryType, QueryTypeMode, QueryWaitEvents, RCAGuideline, RCA_GANT_CHART, REACT_APP_API_URL, REGION_TAG, REGION_ZONE_TAG, RUNTIME_CONFIG_KEYS, Resources, RowItemClasses$1 as RowItemClasses, RuntimeConfigData, RuntimeConfigType, RuntimeConfigs, SQL_QUERY_REQUEST_GRAPHS, SortDirection, SplitMode, SplitType, SqlDrilldownTabs, SqlTabs, TABLET_ID_TAG, TABLET_TAG, TABLE_REQUEST_GRAPHS, TABLE_TAG, TIME_FILTER_LABEL, TIME_FILTER_VALUES, TOOLTIP_TEXT, TPFeatureFlags, TYPE, TableInfo, TablePageParams, TabletResponseMetadata, TabletTabs, TransformedData, TransformedDbLoadData, TransformedNodeLoadData, TransformedTabletsData, TroubleshootingRecommendations, URL_TAB_PATH, USER_TAG, Universe, UniverseConfig, UniverseDatabaseStatsData, UniverseMetadataFields, UniverseQueryData, UniverseQueryStatsData, UpdateMetadataFormFields, UpdateRuntimeConfigFormFields, UrlParams, VIEW_MORE, VISIBLE_DB_LOAD_METADATA_COLUMNS, VISIBLE_NODE_LOAD_METADATA_COLUMNS, VISIBLE_QUERY_METADATA_COLUMNS, VISIBLE_TABLETS_METADATA_COLUMNS, VISIBLE_TABLET_DRILLDOWN_METADATA_COLUMNS, WaitEventClassification, YBCheckboxField, YBErrorIndicator, YBInfinitePagination, YBInputField, YBPanelItem, YBThemeWrapper, YBToggleField, YSQL_COLUMNS, ZONE_TAG, ZoneNodeSelector, filterDurations, getCustomFooterComponent, getRowCellComponent, isDefinedNotNull, isEmptyArray, isEmptyObject, isEmptyString, isNonEmptyArray, isNonEmptyObject, isNonEmptyString, isNullOrEmpty, isValidObject, isYAxisGreaterThanThousand, metricOutlierSelectors, metricSplitSelectors, otherSplitSelectors, queryTypeSelectors, removeNullProperties, useCodeBlockStyles };
|