@yugabytedb/perf-advisor-ui 1.0.78 → 1.0.80
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 +2 -90108
- package/dist/esm/index.js.map +1 -1
- package/dist/types.d.ts +191 -21
- package/package.json +2 -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;
|
|
@@ -596,8 +695,9 @@ interface MetricsAnalysisEntryProps {
|
|
|
596
695
|
apiUrl: string;
|
|
597
696
|
onSelectedIssue?: (troubleshootUuid: string | null, params?: PAUrlParams) => void;
|
|
598
697
|
onSelectedQuery?: (queryId: string | null, params?: QueryPageParams) => void;
|
|
698
|
+
onNavigateToUrl?: (url: string) => void;
|
|
599
699
|
}
|
|
600
|
-
declare const MetricsAnalysisEntry: ({ universeUuid, troubleshootUuid, appName, timezone, apiUrl, onSelectedIssue, onSelectedQuery }: MetricsAnalysisEntryProps) => JSX.Element;
|
|
700
|
+
declare const MetricsAnalysisEntry: ({ universeUuid, troubleshootUuid, appName, timezone, apiUrl, onSelectedIssue, onSelectedQuery, onNavigateToUrl }: MetricsAnalysisEntryProps) => JSX.Element;
|
|
601
701
|
|
|
602
702
|
interface PerfAdvisorEntryProps {
|
|
603
703
|
timezone?: string;
|
|
@@ -606,8 +706,9 @@ interface PerfAdvisorEntryProps {
|
|
|
606
706
|
apiUrl: string;
|
|
607
707
|
onSelectedIssue?: (troubleshootUuid: string, params?: PAUrlParams) => void;
|
|
608
708
|
onSelectedQuery?: (queryId: string, params?: QueryPageParams) => void;
|
|
709
|
+
onNavigateToUrl?: (url: string) => void;
|
|
609
710
|
}
|
|
610
|
-
declare const PerfAdvisorEntry: ({ timezone, universeUuid, appName, apiUrl, onSelectedIssue, onSelectedQuery }: PerfAdvisorEntryProps) => JSX.Element;
|
|
711
|
+
declare const PerfAdvisorEntry: ({ timezone, universeUuid, appName, apiUrl, onSelectedIssue, onSelectedQuery, onNavigateToUrl }: PerfAdvisorEntryProps) => JSX.Element;
|
|
611
712
|
|
|
612
713
|
interface TroubleshootConfigurationProps {
|
|
613
714
|
apiUrl: string;
|
|
@@ -655,13 +756,17 @@ declare enum QUERY_KEY {
|
|
|
655
756
|
fetchAnomalyGroupsById = "fetchAnomalyGroupsById",
|
|
656
757
|
getUniverseMetadata = "getUniverseMetadata",
|
|
657
758
|
fetchMetricsGraphs = "fetchMetricsGraphs",
|
|
658
|
-
|
|
759
|
+
fetchLoadDbStatsPage = "fetchLoadDbStatsPage",
|
|
760
|
+
fetchTabletsStatsPage = "fetchTabletsStatsPage",
|
|
761
|
+
fetchNodeLoadStatsPage = "fetchNodeLoadStatsPage"
|
|
659
762
|
}
|
|
660
763
|
declare class ApiService {
|
|
661
764
|
fetchAnomalies: (universeUuid: string, startTime?: Date | null, endTime?: Date | null, apiUrl?: string) => Promise<Anomaly[]>;
|
|
662
765
|
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
766
|
fetchQueriesPage: (universeUuid: string, payload: any) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
664
|
-
|
|
767
|
+
fetchLoadDbStatsPage: (universeUuid: string, payload: any) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
768
|
+
fetchTabletStatsPage: (universeUuid: string, payload: any, getClusterDetails: () => any) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
769
|
+
fetchNodeLoadStatsPage: (universeUuid: string, payload: any) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
665
770
|
fetchQueriesStatsPage: (universeUuid: string, payload: any, getClusterDetails: () => any, filteredLegends: string[]) => Promise<axios.AxiosResponse<GraphRequestParams[]>>;
|
|
666
771
|
fetchNamespaceSchemas: (universeUuid: string, namespaceName: string, apiUrl?: string) => Promise<string[]>;
|
|
667
772
|
fetchQueryStats: (universeUuid: string, payload: any, apiUrl?: string) => Promise<string[]>;
|
|
@@ -766,10 +871,11 @@ interface OutlierSelectorProps {
|
|
|
766
871
|
outlierType: SplitMode;
|
|
767
872
|
onOutlierTypeSelected: (selectedOption: SplitMode) => void;
|
|
768
873
|
onNumNodesChanged: (numNodes: number) => void;
|
|
874
|
+
metricMeasure?: MetricMeasure;
|
|
769
875
|
showNumNodesInput?: boolean;
|
|
770
876
|
showNumNodesSelector?: boolean;
|
|
771
877
|
}
|
|
772
|
-
declare const OutlierSelector: ({ metricOutlierSelectors, selectedNumNodes, outlierType, onOutlierTypeSelected, onNumNodesChanged, showNumNodesInput, showNumNodesSelector }: OutlierSelectorProps) => JSX.Element;
|
|
878
|
+
declare const OutlierSelector: ({ metricOutlierSelectors, selectedNumNodes, outlierType, onOutlierTypeSelected, onNumNodesChanged, metricMeasure, showNumNodesInput, showNumNodesSelector }: OutlierSelectorProps) => JSX.Element;
|
|
773
879
|
|
|
774
880
|
interface ClusterRegionSelectorProps$1 {
|
|
775
881
|
selectedItem: string;
|
|
@@ -818,16 +924,20 @@ declare const CPU_COUNT = "cpu_count";
|
|
|
818
924
|
declare const metricSplitSelectors: readonly [{
|
|
819
925
|
readonly value: MetricMeasure.OVERALL;
|
|
820
926
|
readonly label: "Overall";
|
|
927
|
+
readonly text: "Overall";
|
|
821
928
|
}, {
|
|
822
929
|
readonly value: MetricMeasure.OUTLIER;
|
|
823
930
|
readonly label: "Outlier Nodes";
|
|
824
931
|
readonly k8label: "Outlier Pods";
|
|
932
|
+
readonly text: "nodes";
|
|
825
933
|
}, {
|
|
826
934
|
readonly value: MetricMeasure.OUTLIER_TABLES;
|
|
827
935
|
readonly label: "Outlier Tables";
|
|
936
|
+
readonly text: "tables";
|
|
828
937
|
}, {
|
|
829
938
|
readonly value: MetricMeasure.OUTLIER_DB;
|
|
830
939
|
readonly label: "Outlier Databases";
|
|
940
|
+
readonly text: "databases";
|
|
831
941
|
}];
|
|
832
942
|
declare const otherSplitSelectors: readonly [{
|
|
833
943
|
readonly value: MetricMeasure.OVERALL;
|
|
@@ -836,6 +946,7 @@ declare const otherSplitSelectors: readonly [{
|
|
|
836
946
|
readonly value: MetricMeasure.OUTLIER;
|
|
837
947
|
readonly label: "Outlier Nodes";
|
|
838
948
|
readonly k8label: "Outlier Pods";
|
|
949
|
+
readonly text: "nodes";
|
|
839
950
|
}];
|
|
840
951
|
declare const metricOutlierSelectors: readonly [{
|
|
841
952
|
readonly value: "TOP";
|
|
@@ -862,14 +973,6 @@ declare const SQL_QUERY_REQUEST_GRAPHS: string[];
|
|
|
862
973
|
declare const CQL_QUERY_REQUEST_GRAPHS: string[];
|
|
863
974
|
declare const BACKGROUND_QUERY_REQUEST_GRAPHS: string[];
|
|
864
975
|
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
976
|
declare const DEFAULT_RECORDS_PER_PAGE: number[];
|
|
874
977
|
declare const ANOMALY_CATEGORY_LIST: AnomalyCategory[];
|
|
875
978
|
declare const GLOBAL_RUNTIME_CONFIG = "00000000-0000-0000-0000-000000000000";
|
|
@@ -925,8 +1028,9 @@ declare const filterDurations: readonly [{
|
|
|
925
1028
|
declare const CATEGORY_HEADER_DATA_MAP: Record<any, any>;
|
|
926
1029
|
declare const QUERY_DETAILS = "QUERY DETAILS";
|
|
927
1030
|
declare const QUERY_TAG = "QUERY";
|
|
928
|
-
declare const
|
|
1031
|
+
declare const DB_CAPS_TAG = "DATABASE";
|
|
929
1032
|
declare const QUERY_TYPE_TAG = "QUERY TYPE";
|
|
1033
|
+
declare const DB_TYPE_TAG = "DATABASE TYPE";
|
|
930
1034
|
declare const DB_TAG = "Database";
|
|
931
1035
|
declare const USER_TAG = "User";
|
|
932
1036
|
declare const TABLE_TAG = "Table";
|
|
@@ -1149,6 +1253,65 @@ declare const COLORS: string[];
|
|
|
1149
1253
|
declare const NAME_COLOR_MAPPING: {
|
|
1150
1254
|
[key: string]: string;
|
|
1151
1255
|
};
|
|
1256
|
+
declare const TOOLTIP_TEXT: {
|
|
1257
|
+
WAIT_EVENT_TYPE_CHART_TOOLTIP: string;
|
|
1258
|
+
ACTIVE_SESSIONS_PER_SECOND_TOOLTIP: string;
|
|
1259
|
+
SST_SIZE_TOOLTIP: string;
|
|
1260
|
+
WAL_SIZE_TOOLTIP: string;
|
|
1261
|
+
PARTITION_TOOLTIP: string;
|
|
1262
|
+
SIZE_TOOLTIP: string;
|
|
1263
|
+
TABLET_ID_TOOLTIP: string;
|
|
1264
|
+
DATABASE_TYPE_TOOLTIP: string;
|
|
1265
|
+
LEADER_NODE_TOOLTIP: string;
|
|
1266
|
+
FOLLOWER_NODES_TOOLTIP: string;
|
|
1267
|
+
EPS_TOOLTIP: string;
|
|
1268
|
+
TOTAL_EPS_RATIO_TABLET_TOOLTIP: string;
|
|
1269
|
+
TOTAL_EPS_RATIO_QUERY_LEVEL_TABLET_TOOLTIP: string;
|
|
1270
|
+
DATABASE_NAME_TOOLTIP: string;
|
|
1271
|
+
SCHEMA_NAME_TOOLTIP: string;
|
|
1272
|
+
TABLE_NAME_TOOLTIP: string;
|
|
1273
|
+
UNIVERSE_ID_TOOLTIP: string;
|
|
1274
|
+
NODE_NAME_TOOLTIP: string;
|
|
1275
|
+
NODE_REGION_ZONE_TOOLTIP: string;
|
|
1276
|
+
CONNECTIONS_TOOLTIP: string;
|
|
1277
|
+
TOTAL_EPS_RATIO_NODE_TOOLTIP: string;
|
|
1278
|
+
EPS_NODE_TOOLTIP: string;
|
|
1279
|
+
EVENTS_NODE_TOOLTIP: string;
|
|
1280
|
+
RPS_NODE_TOOLTIP: string;
|
|
1281
|
+
TOTAL_EPS_RATIO_QUERY_TOOLTIP: string;
|
|
1282
|
+
FIRST_ACTIVE_TIME_TOOLTIP: string;
|
|
1283
|
+
LAST_ACTIVE_TIME_TOOLTIP: string;
|
|
1284
|
+
AVG_LATENCY_TOOLTIP: string;
|
|
1285
|
+
LATENCY_P90_TOOLTIP: string;
|
|
1286
|
+
LATENCY_P99_TOOLTIP: string;
|
|
1287
|
+
QUERY_TYPE_TOOLTIP: string;
|
|
1288
|
+
TOTAL_TIME_TOOLTIP: string;
|
|
1289
|
+
ROWS_AVG_TOOLTIP: string;
|
|
1290
|
+
RPS_TOOLTIP: string;
|
|
1291
|
+
ACTIVE_SESSIONS_PER_SECOND_QUERY_TOOLTIP: string;
|
|
1292
|
+
EVENTS_QUERY_TOOLTIP: string;
|
|
1293
|
+
QUERY_TEXT_TOOLTIP: string;
|
|
1294
|
+
};
|
|
1295
|
+
declare const HISTORICAL_QUERY_DATA_LABELS: {
|
|
1296
|
+
DB_ID: string;
|
|
1297
|
+
TOTAL_EPS_RATIO: string;
|
|
1298
|
+
EPS: string;
|
|
1299
|
+
EVENTS: string;
|
|
1300
|
+
FIRST_ACTIVE_TIME: string;
|
|
1301
|
+
LAST_ACTIVE_TIME: string;
|
|
1302
|
+
AVG_LATENCY: string;
|
|
1303
|
+
LATENCY_P90: string;
|
|
1304
|
+
LATENCY_P99: string;
|
|
1305
|
+
NAMESPACE_NAME: string;
|
|
1306
|
+
QUERY: string;
|
|
1307
|
+
QUERY_ID: string;
|
|
1308
|
+
QUERY_TYPE: string;
|
|
1309
|
+
ROWS_AVG: string;
|
|
1310
|
+
RPS: string;
|
|
1311
|
+
TOTAL_TIME: string;
|
|
1312
|
+
UNIVERSE_ID: string;
|
|
1313
|
+
};
|
|
1314
|
+
declare const ADD_COLUMNS_BUTTON_TEXT = "Add Columns";
|
|
1152
1315
|
declare const DEFAULT_ERROR_MESSAGES: {
|
|
1153
1316
|
UNIVERSE_PA_STATUS_ERROR: string;
|
|
1154
1317
|
UNIVERSE_DETAILS_ERROR: string;
|
|
@@ -1161,12 +1324,19 @@ declare const DEFAULT_ERROR_MESSAGES: {
|
|
|
1161
1324
|
QUERIES_GRAPHS_FETCH_ERROR: string;
|
|
1162
1325
|
METRICS_GRAPHS_FETCH_ERROR: string;
|
|
1163
1326
|
HISTORICAL_QUERY_DATA_FETCH_ERROR: string;
|
|
1327
|
+
TABLETS_DATA_FETCH_ERROR: string;
|
|
1328
|
+
NODE_LOAD_DATA_FETCH_ERROR: string;
|
|
1164
1329
|
CLUSTER_LOAD_FETCH_ERROR: string;
|
|
1165
1330
|
QUERY_STATS_FETCH_ERROR: string;
|
|
1166
1331
|
DB_STATS_FETCH_ERROR: string;
|
|
1167
1332
|
};
|
|
1168
1333
|
declare const VISIBLE_QUERY_METADATA_COLUMNS = "visibleQueryMetadataColumns";
|
|
1169
1334
|
declare const VISIBLE_DB_LOAD_METADATA_COLUMNS = "visibleDbLoadMetadataColumns";
|
|
1335
|
+
declare const VISIBLE_TABLETS_METADATA_COLUMNS = "visibleTabletsMetadataColumns";
|
|
1336
|
+
declare const VISIBLE_TABLET_DRILLDOWN_METADATA_COLUMNS = "visibleTabletDrilldownMetadataColumns";
|
|
1337
|
+
declare const VISIBLE_NODE_LOAD_METADATA_COLUMNS = "visibleNodeLoadMetadataColumns";
|
|
1338
|
+
declare const CPU_TEXT = "CPU";
|
|
1339
|
+
declare const IO_TEXT = "IO";
|
|
1170
1340
|
|
|
1171
1341
|
declare function isDefinedNotNull(obj: any): boolean;
|
|
1172
1342
|
declare function isEmptyArray(arr: any): boolean;
|
|
@@ -1190,4 +1360,4 @@ interface YBThemeWrapperProps {
|
|
|
1190
1360
|
*/
|
|
1191
1361
|
declare const YBThemeWrapper: React.FC<YBThemeWrapperProps>;
|
|
1192
1362
|
|
|
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,
|
|
1363
|
+
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 };
|
package/package.json
CHANGED