@yugabytedb/perf-advisor-ui 1.0.115 → 1.0.117
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 +93036 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/types.d.ts +3 -0
- package/package.json +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -160,6 +160,8 @@ declare enum AnomalyType {
|
|
|
160
160
|
HIGH_MEMORY_USAGE = "HIGH_MEMORY_USAGE",
|
|
161
161
|
HOT_NODE_YSQL_QUERIES = "HOT_NODE_YSQL_QUERIES",
|
|
162
162
|
SLOW_DISKS = "SLOW_DISKS",
|
|
163
|
+
HIGH_SQL_CONNECTIONS = "HIGH_SQL_CONNECTIONS",
|
|
164
|
+
HIGH_SQL_CONNECTION_RATE = "HIGH_SQL_CONNECTION_RATE",
|
|
163
165
|
HOT_TABLET = "HOT_TABLET",
|
|
164
166
|
LARGE_TABLET = "LARGE_TABLET",
|
|
165
167
|
UNUSED_INDEX = "UNUSED_INDEX",
|
|
@@ -1378,6 +1380,7 @@ declare const TOOLTIP_TEXT: {
|
|
|
1378
1380
|
ACTIVE_SESSIONS_PER_SECOND_QUERY_TOOLTIP: string;
|
|
1379
1381
|
EVENTS_QUERY_TOOLTIP: string;
|
|
1380
1382
|
QUERY_TEXT_TOOLTIP: string;
|
|
1383
|
+
DELETED_TABLET_TOOLTIP: string;
|
|
1381
1384
|
};
|
|
1382
1385
|
declare const HISTORICAL_QUERY_DATA_LABELS: {
|
|
1383
1386
|
DB_ID: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yugabytedb/perf-advisor-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.117",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"types": "dist/types.d.ts",
|
|
6
6
|
"author": "Rajagopalan Madhavan",
|
|
@@ -118,4 +118,4 @@
|
|
|
118
118
|
"publishConfig": {
|
|
119
119
|
"access": "public"
|
|
120
120
|
}
|
|
121
|
-
}
|
|
121
|
+
}
|