react-aiops 0.1.13 → 0.1.15
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/index.js
CHANGED
|
@@ -146,7 +146,7 @@ function Ut({
|
|
|
146
146
|
}
|
|
147
147
|
),
|
|
148
148
|
d.map((p, f) => {
|
|
149
|
-
const
|
|
149
|
+
const b = Ht[p.level];
|
|
150
150
|
return /* @__PURE__ */ c(
|
|
151
151
|
"div",
|
|
152
152
|
{
|
|
@@ -154,15 +154,15 @@ function Ut({
|
|
|
154
154
|
display: "flex",
|
|
155
155
|
gap: 8,
|
|
156
156
|
alignItems: "flex-start",
|
|
157
|
-
color:
|
|
157
|
+
color: b.color,
|
|
158
158
|
fontSize: 12,
|
|
159
|
-
background:
|
|
159
|
+
background: b.bg,
|
|
160
160
|
padding: "6px 10px",
|
|
161
161
|
borderRadius: 4,
|
|
162
|
-
borderLeft: `2px solid ${
|
|
162
|
+
borderLeft: `2px solid ${b.border}`
|
|
163
163
|
},
|
|
164
164
|
children: [
|
|
165
|
-
/* @__PURE__ */ e("span", { children:
|
|
165
|
+
/* @__PURE__ */ e("span", { children: b.icon }),
|
|
166
166
|
" ",
|
|
167
167
|
/* @__PURE__ */ e("span", { children: p.message })
|
|
168
168
|
]
|
|
@@ -177,7 +177,7 @@ function Ut({
|
|
|
177
177
|
}
|
|
178
178
|
);
|
|
179
179
|
}
|
|
180
|
-
const
|
|
180
|
+
const C = {
|
|
181
181
|
online: { color: "#00e5ff", glow: "rgba(0,229,255,0.55)" },
|
|
182
182
|
warning: { color: "#ff8c00", glow: "rgba(255,140,0,0.55)" },
|
|
183
183
|
critical: { color: "#ff2255", glow: "rgba(255,34,85,0.55)" },
|
|
@@ -235,7 +235,7 @@ function ht(t, n, o) {
|
|
|
235
235
|
}
|
|
236
236
|
const ct = "cubic-bezier(0.34, 1.56, 0.64, 1)", qe = "cubic-bezier(0.16, 1, 0.3, 1)";
|
|
237
237
|
function Ot(t) {
|
|
238
|
-
return
|
|
238
|
+
return C[t]?.color ?? C.online.color;
|
|
239
239
|
}
|
|
240
240
|
function Yt(t, n, o) {
|
|
241
241
|
return t >= o ? "#ff2255" : t >= n ? "#ff8c00" : "#00e5ff";
|
|
@@ -250,31 +250,31 @@ function Vt({
|
|
|
250
250
|
sceneWidth: i = 660,
|
|
251
251
|
sceneHeight: r = 600
|
|
252
252
|
}) {
|
|
253
|
-
const { type: a, name: s, status: l, ex: h, ey: d, context: p = {} } = t, f = Ot(l),
|
|
253
|
+
const { type: a, name: s, status: l, ex: h, ey: d, context: p = {} } = t, f = Ot(l), b = h >= i / 2, u = d >= r / 2, g = {
|
|
254
254
|
position: "fixed",
|
|
255
|
-
...
|
|
255
|
+
...b ? { right: 28 } : { left: 28 },
|
|
256
256
|
...u ? { bottom: 110 } : { top: 72 }
|
|
257
|
-
}, m =
|
|
257
|
+
}, m = b ? 40 : -40, w = u ? 30 : -30, v = t.dialogMetrics ?? p.dialogMetrics;
|
|
258
258
|
let S;
|
|
259
259
|
if (v && v.length > 0)
|
|
260
260
|
S = v.map((y, x) => {
|
|
261
|
-
const
|
|
261
|
+
const A = y.warnAt ?? 70, k = y.critAt ?? 85;
|
|
262
262
|
return {
|
|
263
263
|
id: y.id,
|
|
264
264
|
label: y.label,
|
|
265
265
|
sublabel: y.sublabel,
|
|
266
266
|
value: y.value,
|
|
267
267
|
unit: y.unit ?? "%",
|
|
268
|
-
status: Xe(l, y.value,
|
|
268
|
+
status: Xe(l, y.value, A, k),
|
|
269
269
|
icon: y.icon ?? "cpu",
|
|
270
270
|
delay: x,
|
|
271
271
|
colorOverride: y.color,
|
|
272
|
-
warnAt:
|
|
272
|
+
warnAt: A,
|
|
273
273
|
critAt: k
|
|
274
274
|
};
|
|
275
275
|
});
|
|
276
276
|
else {
|
|
277
|
-
const y = p.cpuLoad ?? p.traffic ?? 50, x = p.memLoad ?? p.queueDepth ?? 60,
|
|
277
|
+
const y = p.cpuLoad ?? p.traffic ?? 50, x = p.memLoad ?? p.queueDepth ?? 60, A = p.capacity ?? 72, k = Xe(l, y, 70, 85), $ = Xe(l, x, 75, 88), H = Xe(l, A, 75, 90);
|
|
278
278
|
S = [
|
|
279
279
|
{
|
|
280
280
|
id: "cpu",
|
|
@@ -292,7 +292,7 @@ function Vt({
|
|
|
292
292
|
sublabel: a === "database" ? "BUFFER POOL" : "HEAP USAGE",
|
|
293
293
|
value: x,
|
|
294
294
|
unit: "%",
|
|
295
|
-
status:
|
|
295
|
+
status: $,
|
|
296
296
|
icon: "mem",
|
|
297
297
|
delay: 1
|
|
298
298
|
},
|
|
@@ -300,9 +300,9 @@ function Vt({
|
|
|
300
300
|
id: "storage",
|
|
301
301
|
label: "STORAGE",
|
|
302
302
|
sublabel: a === "database" ? "TABLESPACE" : "DISK I/O",
|
|
303
|
-
value:
|
|
303
|
+
value: A,
|
|
304
304
|
unit: "%",
|
|
305
|
-
status:
|
|
305
|
+
status: H,
|
|
306
306
|
icon: "disk",
|
|
307
307
|
delay: 2
|
|
308
308
|
}
|
|
@@ -312,7 +312,7 @@ function Vt({
|
|
|
312
312
|
"div",
|
|
313
313
|
{
|
|
314
314
|
style: {
|
|
315
|
-
...
|
|
315
|
+
...g,
|
|
316
316
|
width: 420,
|
|
317
317
|
background: "linear-gradient(170deg, rgba(2, 10, 22, 0.96) 0%, rgba(2, 6, 14, 0.98) 100%)",
|
|
318
318
|
backdropFilter: "blur(20px)",
|
|
@@ -583,8 +583,8 @@ function _t({
|
|
|
583
583
|
delay: d,
|
|
584
584
|
colorOverride: p,
|
|
585
585
|
warnAt: f = 70,
|
|
586
|
-
critAt:
|
|
587
|
-
} = t, u = p ?? Yt(a, f,
|
|
586
|
+
critAt: b = 85
|
|
587
|
+
} = t, u = p ?? Yt(a, f, b), g = p ?? Ot(l);
|
|
588
588
|
return /* @__PURE__ */ c(
|
|
589
589
|
"div",
|
|
590
590
|
{
|
|
@@ -604,8 +604,8 @@ function _t({
|
|
|
604
604
|
width: 52,
|
|
605
605
|
height: 52,
|
|
606
606
|
borderRadius: 12,
|
|
607
|
-
border: `1px solid ${
|
|
608
|
-
background: `linear-gradient(135deg, ${
|
|
607
|
+
border: `1px solid ${g}44`,
|
|
608
|
+
background: `linear-gradient(135deg, ${g}0c 0%, ${g}04 100%)`,
|
|
609
609
|
display: "flex",
|
|
610
610
|
alignItems: "center",
|
|
611
611
|
justifyContent: "center",
|
|
@@ -615,7 +615,7 @@ function _t({
|
|
|
615
615
|
animation: n ? `comp-dialog-icon-pop 0.5s ${ct} ${0.35 + d * 0.12}s both` : "none"
|
|
616
616
|
},
|
|
617
617
|
children: [
|
|
618
|
-
/* @__PURE__ */ e(jt, { type: h, color:
|
|
618
|
+
/* @__PURE__ */ e(jt, { type: h, color: g }),
|
|
619
619
|
(l === "warning" || l === "critical") && /* @__PURE__ */ e(
|
|
620
620
|
"div",
|
|
621
621
|
{
|
|
@@ -626,8 +626,8 @@ function _t({
|
|
|
626
626
|
width: 5,
|
|
627
627
|
height: 5,
|
|
628
628
|
borderRadius: "50%",
|
|
629
|
-
background:
|
|
630
|
-
boxShadow: `0 0 6px ${
|
|
629
|
+
background: g,
|
|
630
|
+
boxShadow: `0 0 6px ${g}`,
|
|
631
631
|
animation: "holo-led-blink 1.2s infinite"
|
|
632
632
|
}
|
|
633
633
|
}
|
|
@@ -737,7 +737,7 @@ function _t({
|
|
|
737
737
|
{
|
|
738
738
|
style: {
|
|
739
739
|
position: "absolute",
|
|
740
|
-
left: `${
|
|
740
|
+
left: `${b}%`,
|
|
741
741
|
top: 0,
|
|
742
742
|
bottom: 0,
|
|
743
743
|
width: 1,
|
|
@@ -781,7 +781,7 @@ function _t({
|
|
|
781
781
|
{
|
|
782
782
|
style: {
|
|
783
783
|
position: "absolute",
|
|
784
|
-
left: `${
|
|
784
|
+
left: `${b}%`,
|
|
785
785
|
transform: "translateX(-50%)",
|
|
786
786
|
fontSize: 6,
|
|
787
787
|
color: "rgba(255,34,85,0.3)",
|
|
@@ -914,34 +914,34 @@ function Xt({
|
|
|
914
914
|
componentScale: d = 0.35,
|
|
915
915
|
drillZoom: p = 3.3,
|
|
916
916
|
autoRotateCarousel: f = !0,
|
|
917
|
-
carouselSpeed:
|
|
917
|
+
carouselSpeed: b = 6e-3,
|
|
918
918
|
width: u = 950,
|
|
919
|
-
height:
|
|
919
|
+
height: g = 790,
|
|
920
920
|
onSelectSystem: m,
|
|
921
921
|
onBackgroundClick: w,
|
|
922
922
|
onComponentClick: v,
|
|
923
923
|
onCloseDrill: S,
|
|
924
924
|
onComponentUpdate: y,
|
|
925
925
|
selectedSystemStatus: x = "online",
|
|
926
|
-
selectedSystemDbSync:
|
|
926
|
+
selectedSystemDbSync: A = !0,
|
|
927
927
|
selectedSystemMetrics: k,
|
|
928
|
-
selectedSystemAlerts:
|
|
928
|
+
selectedSystemAlerts: $
|
|
929
929
|
}) {
|
|
930
|
-
const [
|
|
930
|
+
const [H, L] = R(0);
|
|
931
931
|
ke(() => {
|
|
932
|
-
let
|
|
932
|
+
let D;
|
|
933
933
|
if ((o === "compact" || o === "collapsing") && f) {
|
|
934
934
|
const U = () => {
|
|
935
|
-
|
|
935
|
+
L((ne) => ne + b), D = requestAnimationFrame(U);
|
|
936
936
|
};
|
|
937
|
-
|
|
937
|
+
D = requestAnimationFrame(U);
|
|
938
938
|
}
|
|
939
|
-
return () => cancelAnimationFrame(
|
|
940
|
-
}, [o, f,
|
|
941
|
-
const
|
|
939
|
+
return () => cancelAnimationFrame(D);
|
|
940
|
+
}, [o, f, b]);
|
|
941
|
+
const M = q.Children.toArray(t), K = M.length, Z = Tt(
|
|
942
942
|
() => ({
|
|
943
943
|
totalSystems: K,
|
|
944
|
-
carouselRotation:
|
|
944
|
+
carouselRotation: H,
|
|
945
945
|
viewState: o,
|
|
946
946
|
animPhase: i,
|
|
947
947
|
selectedSystem: r,
|
|
@@ -957,7 +957,7 @@ function Xt({
|
|
|
957
957
|
}),
|
|
958
958
|
[
|
|
959
959
|
K,
|
|
960
|
-
|
|
960
|
+
H,
|
|
961
961
|
o,
|
|
962
962
|
i,
|
|
963
963
|
r,
|
|
@@ -971,9 +971,9 @@ function Xt({
|
|
|
971
971
|
y,
|
|
972
972
|
u
|
|
973
973
|
]
|
|
974
|
-
), ye =
|
|
974
|
+
), ye = M.map((D, U) => /* @__PURE__ */ e(bt.Provider, { value: { index: U }, children: D }, U)), me = o === "expanded" || o === "expanding" && i >= 4;
|
|
975
975
|
return /* @__PURE__ */ c(ut.Provider, { value: Z, children: [
|
|
976
|
-
/* @__PURE__ */ c("div", { style: { position: "relative", width: u, height:
|
|
976
|
+
/* @__PURE__ */ c("div", { style: { position: "relative", width: u, height: g, margin: "0 auto", flexShrink: 0 }, children: [
|
|
977
977
|
n && (o === "compact" || o === "collapsing") && /* @__PURE__ */ e(
|
|
978
978
|
"img",
|
|
979
979
|
{
|
|
@@ -996,25 +996,25 @@ function Xt({
|
|
|
996
996
|
),
|
|
997
997
|
ye
|
|
998
998
|
] }),
|
|
999
|
-
r && /* @__PURE__ */ e("div", { onClick: (
|
|
999
|
+
r && /* @__PURE__ */ e("div", { onClick: (D) => D.stopPropagation(), children: /* @__PURE__ */ e(
|
|
1000
1000
|
Ut,
|
|
1001
1001
|
{
|
|
1002
1002
|
name: r,
|
|
1003
1003
|
status: x,
|
|
1004
|
-
dbSync:
|
|
1004
|
+
dbSync: A,
|
|
1005
1005
|
visible: me && !a,
|
|
1006
1006
|
metrics: k,
|
|
1007
|
-
alerts:
|
|
1007
|
+
alerts: $
|
|
1008
1008
|
}
|
|
1009
1009
|
) }),
|
|
1010
|
-
a && /* @__PURE__ */ e("div", { onClick: (
|
|
1010
|
+
a && /* @__PURE__ */ e("div", { onClick: (D) => D.stopPropagation(), children: /* @__PURE__ */ e(
|
|
1011
1011
|
Vt,
|
|
1012
1012
|
{
|
|
1013
1013
|
component: a,
|
|
1014
1014
|
onClose: S,
|
|
1015
1015
|
visible: s >= 0.3,
|
|
1016
1016
|
sceneWidth: u,
|
|
1017
|
-
sceneHeight:
|
|
1017
|
+
sceneHeight: g
|
|
1018
1018
|
}
|
|
1019
1019
|
) })
|
|
1020
1020
|
] });
|
|
@@ -1316,30 +1316,30 @@ function Lt({
|
|
|
1316
1316
|
_animPhase: d,
|
|
1317
1317
|
_selectedSystem: p,
|
|
1318
1318
|
_selectedComponent: f,
|
|
1319
|
-
_rotateY:
|
|
1319
|
+
_rotateY: b,
|
|
1320
1320
|
_autoRotateComponents: u,
|
|
1321
|
-
_componentScale:
|
|
1321
|
+
_componentScale: g,
|
|
1322
1322
|
_drillZoom: m,
|
|
1323
1323
|
_onSelectSystem: w,
|
|
1324
1324
|
_onComponentClick: v,
|
|
1325
1325
|
_onComponentUpdate: S,
|
|
1326
1326
|
_containerWidth: y
|
|
1327
1327
|
}) {
|
|
1328
|
-
const x = ge(ut),
|
|
1328
|
+
const x = ge(ut), A = ge(bt), k = a ?? A.index, $ = s ?? x?.totalSystems ?? 1, H = l ?? x?.carouselRotation ?? 0, L = h ?? x?.viewState ?? "compact", M = d ?? x?.animPhase ?? 0, K = p ?? x?.selectedSystem ?? null, Z = f ?? x?.selectedComponent ?? null, ye = b ?? x?.rotateY ?? 20, me = u ?? x?.autoRotateComponents ?? !0, D = g ?? x?.componentScale ?? 0.35, U = m ?? x?.drillZoom ?? 3.3, ne = w ?? x?.onSelectSystem, Be = v ?? x?.onComponentClick, le = S ?? x?.onComponentUpdate, Fe = y ?? x?.containerWidth ?? 950, J = K === t, z = J && (L === "expanded" || L === "expanding" && M >= 1), _ = !z, se = (Fe - Zt) / 2, de = $t + se, Ce = k / $ * Math.PI * 2 + H, it = 420, nt = 160, xe = de + Math.cos(Ce) * it, ce = 450 + Math.sin(Ce) * nt, ot = Math.round(ce), T = !J && (L === "expanding" || L === "expanded"), j = T ? 0 : 1, oe = _ ? 0.3 + (Math.sin(Ce) + 1) * 0.1 : 1, ee = _ ? oe : D, re = L === "compact" || L === "collapsing" ? "none" : "all 1s cubic-bezier(0.34, 1.56, 0.64, 1)", ve = J && Z, ae = ve ? U : 1, pe = Z?.ex ?? 330, B = Z?.ey ?? 300, { size: rt = 90, color: at = "#00e5ff", widthRatio: Ye = 3 } = i ?? {}, we = {
|
|
1329
1329
|
name: t,
|
|
1330
1330
|
isSelected: J,
|
|
1331
|
-
isExpandedPos:
|
|
1331
|
+
isExpandedPos: z,
|
|
1332
1332
|
isCompact: _,
|
|
1333
|
-
animPhase:
|
|
1333
|
+
animPhase: M,
|
|
1334
1334
|
compactCx: xe,
|
|
1335
1335
|
compactCy: ce,
|
|
1336
|
-
groupScale:
|
|
1336
|
+
groupScale: oe,
|
|
1337
1337
|
effectiveScale: ee,
|
|
1338
|
-
transitionValue:
|
|
1338
|
+
transitionValue: re,
|
|
1339
1339
|
rotateY: ye,
|
|
1340
1340
|
autoRotateComponents: me,
|
|
1341
1341
|
onComponentClick: Be,
|
|
1342
|
-
onComponentUpdate:
|
|
1342
|
+
onComponentUpdate: le,
|
|
1343
1343
|
selectedComponentName: Z?.name ?? null,
|
|
1344
1344
|
expandedOffsetX: se
|
|
1345
1345
|
};
|
|
@@ -1358,7 +1358,7 @@ function Lt({
|
|
|
1358
1358
|
filter: _ && Math.sin(Ce) < -0.5 ? "brightness(0.5) blur(2px)" : "none",
|
|
1359
1359
|
zIndex: J ? 500 : T ? 0 : ot,
|
|
1360
1360
|
transformOrigin: `${de}px ${kt}px`,
|
|
1361
|
-
transform: ve ? `translate(${-(pe - $t) *
|
|
1361
|
+
transform: ve ? `translate(${-(pe - $t) * ae}px, ${-(B - kt) * ae}px) scale(${ae})` : "none"
|
|
1362
1362
|
},
|
|
1363
1363
|
children: [
|
|
1364
1364
|
_ && !T && /* @__PURE__ */ e(
|
|
@@ -1375,8 +1375,8 @@ function Lt({
|
|
|
1375
1375
|
cursor: "pointer",
|
|
1376
1376
|
zIndex: 101
|
|
1377
1377
|
},
|
|
1378
|
-
onClick: (
|
|
1379
|
-
|
|
1378
|
+
onClick: (F) => {
|
|
1379
|
+
F.stopPropagation(), ne?.(t);
|
|
1380
1380
|
}
|
|
1381
1381
|
}
|
|
1382
1382
|
),
|
|
@@ -1387,7 +1387,7 @@ function Lt({
|
|
|
1387
1387
|
position: "absolute",
|
|
1388
1388
|
left: xe,
|
|
1389
1389
|
top: ce - 200,
|
|
1390
|
-
transform: `translate(-50%, -50%) scale(${
|
|
1390
|
+
transform: `translate(-50%, -50%) scale(${oe})`,
|
|
1391
1391
|
zIndex: 110,
|
|
1392
1392
|
pointerEvents: "none",
|
|
1393
1393
|
animation: "holo-led-blink 1.5s infinite",
|
|
@@ -1433,13 +1433,13 @@ function Lt({
|
|
|
1433
1433
|
{
|
|
1434
1434
|
style: {
|
|
1435
1435
|
position: "absolute",
|
|
1436
|
-
left:
|
|
1437
|
-
top:
|
|
1438
|
-
transform: `translate(-50%, -50%) scale(${
|
|
1436
|
+
left: z ? de : xe,
|
|
1437
|
+
top: z ? 48 : ce - 180,
|
|
1438
|
+
transform: `translate(-50%, -50%) scale(${z ? 1.2 : oe * 1.5})`,
|
|
1439
1439
|
opacity: 1,
|
|
1440
1440
|
pointerEvents: "none",
|
|
1441
1441
|
zIndex: 100,
|
|
1442
|
-
transition:
|
|
1442
|
+
transition: re,
|
|
1443
1443
|
fontSize: 36,
|
|
1444
1444
|
fontWeight: 700,
|
|
1445
1445
|
letterSpacing: "0.18em",
|
|
@@ -1459,23 +1459,23 @@ function Lt({
|
|
|
1459
1459
|
style: {
|
|
1460
1460
|
position: "absolute",
|
|
1461
1461
|
top: 0,
|
|
1462
|
-
left:
|
|
1462
|
+
left: z ? se : 0,
|
|
1463
1463
|
width: 660,
|
|
1464
1464
|
height: 640,
|
|
1465
1465
|
pointerEvents: "none",
|
|
1466
1466
|
zIndex: 0,
|
|
1467
|
-
transition:
|
|
1467
|
+
transition: re
|
|
1468
1468
|
},
|
|
1469
|
-
children: o.map((
|
|
1469
|
+
children: o.map((F, Ve) => /* @__PURE__ */ e(
|
|
1470
1470
|
qt,
|
|
1471
1471
|
{
|
|
1472
|
-
x1:
|
|
1473
|
-
y1:
|
|
1474
|
-
x2:
|
|
1475
|
-
y2:
|
|
1476
|
-
show: J &&
|
|
1477
|
-
color:
|
|
1478
|
-
dur:
|
|
1472
|
+
x1: F.from[0],
|
|
1473
|
+
y1: F.from[1],
|
|
1474
|
+
x2: F.to[0],
|
|
1475
|
+
y2: F.to[1],
|
|
1476
|
+
show: J && M >= (F.visibleAtPhase ?? 0),
|
|
1477
|
+
color: F.color,
|
|
1478
|
+
dur: F.duration
|
|
1479
1479
|
},
|
|
1480
1480
|
Ve
|
|
1481
1481
|
))
|
|
@@ -1486,10 +1486,10 @@ function Lt({
|
|
|
1486
1486
|
{
|
|
1487
1487
|
style: {
|
|
1488
1488
|
position: "absolute",
|
|
1489
|
-
left:
|
|
1490
|
-
top:
|
|
1491
|
-
transform: `translate(-50%, -50%) scaleX(${
|
|
1492
|
-
transition:
|
|
1489
|
+
left: z ? de : xe,
|
|
1490
|
+
top: z ? 570 : ce + 70,
|
|
1491
|
+
transform: `translate(-50%, -50%) scaleX(${z ? 1 : 0.4}) scaleY(${z ? 1 : 0.6}) scale(${z ? 1 : oe})`,
|
|
1492
|
+
transition: re,
|
|
1493
1493
|
zIndex: 1
|
|
1494
1494
|
},
|
|
1495
1495
|
children: /* @__PURE__ */ e(Gt, { size: rt, color: at, widthRatio: Ye, children: /* @__PURE__ */ e("div", { className: "base-hotspot" }) })
|
|
@@ -1500,7 +1500,7 @@ function Lt({
|
|
|
1500
1500
|
}
|
|
1501
1501
|
) });
|
|
1502
1502
|
}
|
|
1503
|
-
function
|
|
1503
|
+
function N({
|
|
1504
1504
|
ex: t,
|
|
1505
1505
|
ey: n,
|
|
1506
1506
|
status: o,
|
|
@@ -1510,23 +1510,22 @@ function W({
|
|
|
1510
1510
|
offsetY: s,
|
|
1511
1511
|
isVisible: l,
|
|
1512
1512
|
align: h = "right",
|
|
1513
|
-
internalRef: d
|
|
1514
|
-
forceShow: p = !1
|
|
1513
|
+
internalRef: d
|
|
1515
1514
|
}) {
|
|
1516
|
-
const
|
|
1517
|
-
if (o === "online"
|
|
1518
|
-
const
|
|
1519
|
-
let
|
|
1520
|
-
if (
|
|
1521
|
-
const
|
|
1522
|
-
|
|
1515
|
+
const p = ge(Re), f = p?.expandedOffsetX ?? 0;
|
|
1516
|
+
if (o === "online") return null;
|
|
1517
|
+
const b = l && !!p?.isExpandedPos, u = C[o]?.color ?? C.warning.color, g = Math.abs(a) > Math.abs(s), m = t + f + (g ? Math.sign(a) * 45 : 0), w = n + (g ? 0 : Math.sign(s) * 40), v = t + f + a, S = n + s;
|
|
1518
|
+
let y = "";
|
|
1519
|
+
if (g) {
|
|
1520
|
+
const $ = m + (v - m) / 2;
|
|
1521
|
+
y = `M ${m} ${w} L ${$} ${w} L ${$} ${S} L ${v} ${S}`;
|
|
1523
1522
|
} else {
|
|
1524
|
-
const
|
|
1525
|
-
|
|
1523
|
+
const $ = w + (S - w) / 2;
|
|
1524
|
+
y = `M ${m} ${w} L ${m} ${$} L ${v} ${$} L ${v} ${S}`;
|
|
1526
1525
|
}
|
|
1527
|
-
let
|
|
1528
|
-
h === "left" && (
|
|
1529
|
-
const
|
|
1526
|
+
let x = "translate(0, -50%)";
|
|
1527
|
+
h === "left" && (x = "translate(-100%, -50%)"), h === "top" && (x = "translate(-50%, -100%)"), h === "bottom" && (x = "translate(-50%, 0)");
|
|
1528
|
+
const A = h === "left" ? -8 : h === "right" ? 8 : 0, k = h === "top" ? -8 : h === "bottom" ? 8 : 0;
|
|
1530
1529
|
return /* @__PURE__ */ c(
|
|
1531
1530
|
"div",
|
|
1532
1531
|
{
|
|
@@ -1537,7 +1536,7 @@ function W({
|
|
|
1537
1536
|
width: "100%",
|
|
1538
1537
|
height: "100%",
|
|
1539
1538
|
pointerEvents: "none",
|
|
1540
|
-
opacity:
|
|
1539
|
+
opacity: b ? 1 : 0,
|
|
1541
1540
|
transition: "opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s",
|
|
1542
1541
|
zIndex: 150
|
|
1543
1542
|
},
|
|
@@ -1557,12 +1556,12 @@ function W({
|
|
|
1557
1556
|
children: /* @__PURE__ */ e(
|
|
1558
1557
|
"path",
|
|
1559
1558
|
{
|
|
1560
|
-
d:
|
|
1559
|
+
d: y,
|
|
1561
1560
|
fill: "none",
|
|
1562
|
-
stroke:
|
|
1561
|
+
stroke: u,
|
|
1563
1562
|
strokeWidth: "1.5",
|
|
1564
1563
|
strokeDasharray: "5 4",
|
|
1565
|
-
style: { filter: `drop-shadow(0 0 4px ${
|
|
1564
|
+
style: { filter: `drop-shadow(0 0 4px ${u})`, opacity: 0.55 }
|
|
1566
1565
|
}
|
|
1567
1566
|
)
|
|
1568
1567
|
}
|
|
@@ -1572,14 +1571,14 @@ function W({
|
|
|
1572
1571
|
{
|
|
1573
1572
|
style: {
|
|
1574
1573
|
position: "absolute",
|
|
1575
|
-
left:
|
|
1576
|
-
top:
|
|
1577
|
-
transform:
|
|
1578
|
-
marginLeft:
|
|
1579
|
-
marginTop:
|
|
1574
|
+
left: v,
|
|
1575
|
+
top: S,
|
|
1576
|
+
transform: x,
|
|
1577
|
+
marginLeft: A,
|
|
1578
|
+
marginTop: k,
|
|
1580
1579
|
background: "repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 4px), rgba(2, 8, 16, 0.82)",
|
|
1581
|
-
border: `1px solid ${
|
|
1582
|
-
borderLeft: `2px solid ${
|
|
1580
|
+
border: `1px solid ${u}55`,
|
|
1581
|
+
borderLeft: `2px solid ${u}`,
|
|
1583
1582
|
backdropFilter: "blur(8px)",
|
|
1584
1583
|
WebkitBackdropFilter: "blur(8px)",
|
|
1585
1584
|
padding: "6px 10px",
|
|
@@ -1587,7 +1586,7 @@ function W({
|
|
|
1587
1586
|
color: "#fff",
|
|
1588
1587
|
fontFamily: "'Courier New', monospace",
|
|
1589
1588
|
width: 140,
|
|
1590
|
-
boxShadow: `0 4px 12px rgba(0,0,0,0.4), 0 0 8px ${
|
|
1589
|
+
boxShadow: `0 4px 12px rgba(0,0,0,0.4), 0 0 8px ${u}22 inset`
|
|
1591
1590
|
},
|
|
1592
1591
|
children: [
|
|
1593
1592
|
/* @__PURE__ */ c(
|
|
@@ -1607,8 +1606,8 @@ function W({
|
|
|
1607
1606
|
width: 4,
|
|
1608
1607
|
height: 4,
|
|
1609
1608
|
borderRadius: "50%",
|
|
1610
|
-
background:
|
|
1611
|
-
boxShadow: `0 0 6px ${
|
|
1609
|
+
background: u,
|
|
1610
|
+
boxShadow: `0 0 6px ${u}`,
|
|
1612
1611
|
animation: "holo-led-blink 1.5s infinite"
|
|
1613
1612
|
}
|
|
1614
1613
|
}
|
|
@@ -1617,12 +1616,12 @@ function W({
|
|
|
1617
1616
|
"div",
|
|
1618
1617
|
{
|
|
1619
1618
|
style: {
|
|
1620
|
-
color:
|
|
1619
|
+
color: u,
|
|
1621
1620
|
fontWeight: "600",
|
|
1622
1621
|
fontSize: 10,
|
|
1623
1622
|
letterSpacing: "1px",
|
|
1624
1623
|
textTransform: "uppercase",
|
|
1625
|
-
textShadow: `0 0 4px ${
|
|
1624
|
+
textShadow: `0 0 4px ${u}88`
|
|
1626
1625
|
},
|
|
1627
1626
|
children: d ? `${i} · ${d}` : i
|
|
1628
1627
|
}
|
|
@@ -1648,7 +1647,7 @@ function W({
|
|
|
1648
1647
|
}
|
|
1649
1648
|
);
|
|
1650
1649
|
}
|
|
1651
|
-
function
|
|
1650
|
+
function E({
|
|
1652
1651
|
ex: t,
|
|
1653
1652
|
ey: n,
|
|
1654
1653
|
compactOffset: o,
|
|
@@ -1661,11 +1660,11 @@ function A({
|
|
|
1661
1660
|
componentInfo: d,
|
|
1662
1661
|
visibleAtPhase: p = 0,
|
|
1663
1662
|
fixedScale: f,
|
|
1664
|
-
bare:
|
|
1663
|
+
bare: b = !1,
|
|
1665
1664
|
alert: u
|
|
1666
1665
|
}) {
|
|
1667
|
-
const
|
|
1668
|
-
if (!
|
|
1666
|
+
const g = ge(Re);
|
|
1667
|
+
if (!g)
|
|
1669
1668
|
throw new Error("ServiceNode must be used inside a <Service> component.");
|
|
1670
1669
|
const {
|
|
1671
1670
|
isExpandedPos: m,
|
|
@@ -1674,12 +1673,12 @@ function A({
|
|
|
1674
1673
|
compactCy: S,
|
|
1675
1674
|
groupScale: y,
|
|
1676
1675
|
effectiveScale: x,
|
|
1677
|
-
transitionValue:
|
|
1676
|
+
transitionValue: A,
|
|
1678
1677
|
onComponentClick: k,
|
|
1679
|
-
onComponentUpdate:
|
|
1680
|
-
selectedComponentName:
|
|
1681
|
-
expandedOffsetX:
|
|
1682
|
-
} =
|
|
1678
|
+
onComponentUpdate: $,
|
|
1679
|
+
selectedComponentName: H,
|
|
1680
|
+
expandedOffsetX: L
|
|
1681
|
+
} = g, K = p === 0 || g.isSelected && w >= p ? 1 : 0, Z = v + o.x, ye = S + o.y, me = m ? t + L : Z, D = m ? n : ye, U = f !== void 0 ? f : g.isCompact ? y : x, ne = !!d && !!H && d.name === H, Be = d?.status ? C[d.status]?.color ?? a : a, le = d?.status === "offline" ? "#4a6a8a" : Be, Fe = d && m && k ? () => k({
|
|
1683
1682
|
type: d.type,
|
|
1684
1683
|
name: d.name,
|
|
1685
1684
|
status: d.status,
|
|
@@ -1689,9 +1688,9 @@ function A({
|
|
|
1689
1688
|
dialogMetrics: d.dialogMetrics,
|
|
1690
1689
|
subComponents: d.subComponents,
|
|
1691
1690
|
graphSeries: d.graphSeries
|
|
1692
|
-
}) : void 0, J = JSON.stringify(d?.context ?? {}),
|
|
1691
|
+
}) : void 0, J = JSON.stringify(d?.context ?? {}), z = JSON.stringify(d?.dialogMetrics ?? []);
|
|
1693
1692
|
ke(() => {
|
|
1694
|
-
!ne || !d ||
|
|
1693
|
+
!ne || !d || !$ || $({
|
|
1695
1694
|
type: d.type,
|
|
1696
1695
|
name: d.name,
|
|
1697
1696
|
status: d.status,
|
|
@@ -1702,10 +1701,8 @@ function A({
|
|
|
1702
1701
|
subComponents: d.subComponents,
|
|
1703
1702
|
graphSeries: d.graphSeries
|
|
1704
1703
|
});
|
|
1705
|
-
}, [ne, d?.status, J,
|
|
1706
|
-
const _ = d?.status === "warning" || d?.status === "critical"
|
|
1707
|
-
u && d?.status === "online" && $.warning.color;
|
|
1708
|
-
const se = d?.status ?? "online", de = d?.name ?? s ?? "";
|
|
1704
|
+
}, [ne, d?.status, J, z]);
|
|
1705
|
+
const _ = d?.status === "warning" || d?.status === "critical", se = d?.status ?? "online", de = d?.name ?? s ?? "";
|
|
1709
1706
|
return /* @__PURE__ */ c(Me, { children: [
|
|
1710
1707
|
/* @__PURE__ */ e(
|
|
1711
1708
|
"div",
|
|
@@ -1713,22 +1710,22 @@ function A({
|
|
|
1713
1710
|
style: {
|
|
1714
1711
|
position: "absolute",
|
|
1715
1712
|
left: me,
|
|
1716
|
-
top:
|
|
1713
|
+
top: D,
|
|
1717
1714
|
transform: `translate(-50%, -50%) scale(${U})`,
|
|
1718
1715
|
opacity: K,
|
|
1719
1716
|
zIndex: i,
|
|
1720
|
-
transition:
|
|
1717
|
+
transition: A || "all 1s cubic-bezier(0.34, 1.56, 0.64, 1)",
|
|
1721
1718
|
pointerEvents: m && K >= 0.5 ? "auto" : "none"
|
|
1722
1719
|
},
|
|
1723
|
-
children:
|
|
1720
|
+
children: b ? r : /* @__PURE__ */ e(
|
|
1724
1721
|
Jt,
|
|
1725
1722
|
{
|
|
1726
|
-
statusColor:
|
|
1723
|
+
statusColor: le,
|
|
1727
1724
|
label: s,
|
|
1728
1725
|
subLabel: l,
|
|
1729
1726
|
delay: h,
|
|
1730
1727
|
showLabels: m,
|
|
1731
|
-
isCompact:
|
|
1728
|
+
isCompact: g.isCompact,
|
|
1732
1729
|
onClick: Fe,
|
|
1733
1730
|
isSelected: ne,
|
|
1734
1731
|
isAlerting: _,
|
|
@@ -1738,7 +1735,7 @@ function A({
|
|
|
1738
1735
|
}
|
|
1739
1736
|
),
|
|
1740
1737
|
u && /* @__PURE__ */ e(
|
|
1741
|
-
|
|
1738
|
+
N,
|
|
1742
1739
|
{
|
|
1743
1740
|
ex: t,
|
|
1744
1741
|
ey: n,
|
|
@@ -1749,8 +1746,7 @@ function A({
|
|
|
1749
1746
|
offsetY: u.offsetY ?? -30,
|
|
1750
1747
|
align: u.align ?? "right",
|
|
1751
1748
|
internalRef: u.internalRef,
|
|
1752
|
-
isVisible: !0
|
|
1753
|
-
forceShow: !0
|
|
1749
|
+
isVisible: !0
|
|
1754
1750
|
}
|
|
1755
1751
|
)
|
|
1756
1752
|
] });
|
|
@@ -1767,7 +1763,7 @@ function Jt({
|
|
|
1767
1763
|
isSelected: h = !1,
|
|
1768
1764
|
isAlerting: d = !1
|
|
1769
1765
|
}) {
|
|
1770
|
-
const [p, f] = R(!1),
|
|
1766
|
+
const [p, f] = R(!1), b = h ? `brightness(1.5) drop-shadow(0 0 24px ${n}cc) drop-shadow(0 0 8px ${n}88)` : p && l ? `brightness(1.2) drop-shadow(0 0 12px ${n}77)` : "";
|
|
1771
1767
|
return /* @__PURE__ */ c(
|
|
1772
1768
|
"div",
|
|
1773
1769
|
{
|
|
@@ -1778,7 +1774,7 @@ function Jt({
|
|
|
1778
1774
|
style: {
|
|
1779
1775
|
cursor: l ? "pointer" : void 0,
|
|
1780
1776
|
transition: "filter 0.3s ease",
|
|
1781
|
-
filter:
|
|
1777
|
+
filter: b
|
|
1782
1778
|
},
|
|
1783
1779
|
onMouseEnter: () => f(!0),
|
|
1784
1780
|
onMouseLeave: () => f(!1),
|
|
@@ -1790,8 +1786,8 @@ function Jt({
|
|
|
1790
1786
|
{
|
|
1791
1787
|
className: "node-alert-glow",
|
|
1792
1788
|
style: {
|
|
1793
|
-
"--pulse-color":
|
|
1794
|
-
boxShadow: `0 0 20px ${
|
|
1789
|
+
"--pulse-color": n,
|
|
1790
|
+
boxShadow: `0 0 20px ${n}, 0 0 40px ${n}66`
|
|
1795
1791
|
}
|
|
1796
1792
|
}
|
|
1797
1793
|
),
|
|
@@ -2045,7 +2041,7 @@ function ei({
|
|
|
2045
2041
|
}
|
|
2046
2042
|
),
|
|
2047
2043
|
Array.from({ length: 3 }, (p, f) => {
|
|
2048
|
-
const
|
|
2044
|
+
const b = f < l;
|
|
2049
2045
|
return /* @__PURE__ */ c(
|
|
2050
2046
|
"div",
|
|
2051
2047
|
{
|
|
@@ -2072,8 +2068,8 @@ function ei({
|
|
|
2072
2068
|
height: 5,
|
|
2073
2069
|
borderRadius: "50%",
|
|
2074
2070
|
flexShrink: 0,
|
|
2075
|
-
background:
|
|
2076
|
-
boxShadow:
|
|
2071
|
+
background: b ? t.color : "#08142a",
|
|
2072
|
+
boxShadow: b ? `0 0 6px ${t.color}, 0 0 12px ${t.color}66` : "none"
|
|
2077
2073
|
}
|
|
2078
2074
|
}
|
|
2079
2075
|
),
|
|
@@ -2089,7 +2085,7 @@ function ei({
|
|
|
2089
2085
|
position: "relative",
|
|
2090
2086
|
overflow: "hidden"
|
|
2091
2087
|
},
|
|
2092
|
-
children:
|
|
2088
|
+
children: b && /* @__PURE__ */ e(
|
|
2093
2089
|
"div",
|
|
2094
2090
|
{
|
|
2095
2091
|
style: {
|
|
@@ -2582,20 +2578,20 @@ function $e({
|
|
|
2582
2578
|
brandLabel: d = "BUSAUD",
|
|
2583
2579
|
_compact: p
|
|
2584
2580
|
}) {
|
|
2585
|
-
const [f,
|
|
2581
|
+
const [f, b] = R(n), u = ie(0), g = ie(0);
|
|
2586
2582
|
ke(() => {
|
|
2587
2583
|
if (!r) {
|
|
2588
|
-
|
|
2584
|
+
b(n);
|
|
2589
2585
|
return;
|
|
2590
2586
|
}
|
|
2591
2587
|
const w = (v) => {
|
|
2592
|
-
|
|
2588
|
+
g.current && b((S) => S + (v - g.current) * 0.027), g.current = v, u.current = requestAnimationFrame(w);
|
|
2593
2589
|
};
|
|
2594
2590
|
return u.current = requestAnimationFrame(w), () => {
|
|
2595
|
-
cancelAnimationFrame(u.current),
|
|
2591
|
+
cancelAnimationFrame(u.current), g.current = 0;
|
|
2596
2592
|
};
|
|
2597
2593
|
}, [r, n]);
|
|
2598
|
-
const m =
|
|
2594
|
+
const m = C[a] ?? C.online;
|
|
2599
2595
|
return /* @__PURE__ */ c(
|
|
2600
2596
|
"div",
|
|
2601
2597
|
{
|
|
@@ -2733,14 +2729,14 @@ function Mi({
|
|
|
2733
2729
|
visibleAtPhase: d,
|
|
2734
2730
|
cpuLoad: p,
|
|
2735
2731
|
memLoad: f,
|
|
2736
|
-
brandLabel:
|
|
2732
|
+
brandLabel: b,
|
|
2737
2733
|
dialogMetrics: u,
|
|
2738
|
-
subComponents:
|
|
2734
|
+
subComponents: g,
|
|
2739
2735
|
graphSeries: m,
|
|
2740
2736
|
alert: w
|
|
2741
2737
|
}) {
|
|
2742
2738
|
return /* @__PURE__ */ e(
|
|
2743
|
-
|
|
2739
|
+
E,
|
|
2744
2740
|
{
|
|
2745
2741
|
ex: t,
|
|
2746
2742
|
ey: n,
|
|
@@ -2757,11 +2753,11 @@ function Mi({
|
|
|
2757
2753
|
status: a,
|
|
2758
2754
|
context: { cpuLoad: p, memLoad: f },
|
|
2759
2755
|
dialogMetrics: u,
|
|
2760
|
-
subComponents:
|
|
2756
|
+
subComponents: g,
|
|
2761
2757
|
graphSeries: m
|
|
2762
2758
|
},
|
|
2763
2759
|
alert: w,
|
|
2764
|
-
children: /* @__PURE__ */ e($e, { status: a, cpuLoad: p, memLoad: f, brandLabel:
|
|
2760
|
+
children: /* @__PURE__ */ e($e, { status: a, cpuLoad: p, memLoad: f, brandLabel: b })
|
|
2765
2761
|
}
|
|
2766
2762
|
);
|
|
2767
2763
|
}
|
|
@@ -2779,7 +2775,7 @@ function ni({
|
|
|
2779
2775
|
}) {
|
|
2780
2776
|
return /* @__PURE__ */ c(Me, { children: [
|
|
2781
2777
|
st.map((s, l) => {
|
|
2782
|
-
const h = dt(s), d = l === 0, p = Math.round(4 + h * 9), f = Math.round(12 + h * 22),
|
|
2778
|
+
const h = dt(s), d = l === 0, p = Math.round(4 + h * 9), f = Math.round(12 + h * 22), b = Math.round(28 + h * 44), u = Math.round(h * 0.55 * 255).toString(16).padStart(2, "0");
|
|
2783
2779
|
return /* @__PURE__ */ e(
|
|
2784
2780
|
"div",
|
|
2785
2781
|
{
|
|
@@ -2791,7 +2787,7 @@ function ni({
|
|
|
2791
2787
|
top: t,
|
|
2792
2788
|
transform: `rotateY(${s}deg) translateZ(${Se}px)`,
|
|
2793
2789
|
backfaceVisibility: "hidden",
|
|
2794
|
-
background: d ? a ? "linear-gradient(180deg, rgb(0,28,62), rgb(0,18,44))" : "linear-gradient(180deg, rgba(0,28,62,0.70), rgba(0,18,44,0.76))" : `rgb(${p},${f},${
|
|
2790
|
+
background: d ? a ? "linear-gradient(180deg, rgb(0,28,62), rgb(0,18,44))" : "linear-gradient(180deg, rgba(0,28,62,0.70), rgba(0,18,44,0.76))" : `rgb(${p},${f},${b})`,
|
|
2795
2791
|
borderLeft: `1px solid ${o.color}${u}`,
|
|
2796
2792
|
boxShadow: d ? `inset 0 0 18px ${o.color}28` : "none"
|
|
2797
2793
|
},
|
|
@@ -2996,14 +2992,14 @@ function Ue({
|
|
|
2996
2992
|
d(n);
|
|
2997
2993
|
return;
|
|
2998
2994
|
}
|
|
2999
|
-
const u = (
|
|
3000
|
-
f.current && d((m) => m + (
|
|
2995
|
+
const u = (g) => {
|
|
2996
|
+
f.current && d((m) => m + (g - f.current) * 0.027), f.current = g, p.current = requestAnimationFrame(u);
|
|
3001
2997
|
};
|
|
3002
2998
|
return p.current = requestAnimationFrame(u), () => {
|
|
3003
2999
|
cancelAnimationFrame(p.current), f.current = 0;
|
|
3004
3000
|
};
|
|
3005
3001
|
}, [r, n]);
|
|
3006
|
-
const
|
|
3002
|
+
const b = C[a] ?? C.online;
|
|
3007
3003
|
return /* @__PURE__ */ c(
|
|
3008
3004
|
"div",
|
|
3009
3005
|
{
|
|
@@ -3071,7 +3067,7 @@ function Ue({
|
|
|
3071
3067
|
position: "absolute",
|
|
3072
3068
|
width: te * 2.8 * i,
|
|
3073
3069
|
height: lt * 0.85 * i,
|
|
3074
|
-
background: `radial-gradient(ellipse, ${
|
|
3070
|
+
background: `radial-gradient(ellipse, ${b.glow} 0%, transparent 65%)`,
|
|
3075
3071
|
filter: `blur(${Math.round(50 * i)}px)`,
|
|
3076
3072
|
pointerEvents: "none",
|
|
3077
3073
|
top: "45%",
|
|
@@ -3105,7 +3101,7 @@ function Ue({
|
|
|
3105
3101
|
{
|
|
3106
3102
|
diskY: u * (Oe + gt),
|
|
3107
3103
|
diskIdx: u,
|
|
3108
|
-
cfg:
|
|
3104
|
+
cfg: b,
|
|
3109
3105
|
hasRingBelow: u < 2,
|
|
3110
3106
|
capacity: s,
|
|
3111
3107
|
compact: l
|
|
@@ -3133,12 +3129,12 @@ function zi({
|
|
|
3133
3129
|
visibleAtPhase: d,
|
|
3134
3130
|
capacity: p,
|
|
3135
3131
|
dialogMetrics: f,
|
|
3136
|
-
subComponents:
|
|
3132
|
+
subComponents: b,
|
|
3137
3133
|
graphSeries: u,
|
|
3138
|
-
alert:
|
|
3134
|
+
alert: g
|
|
3139
3135
|
}) {
|
|
3140
3136
|
return /* @__PURE__ */ e(
|
|
3141
|
-
|
|
3137
|
+
E,
|
|
3142
3138
|
{
|
|
3143
3139
|
ex: t,
|
|
3144
3140
|
ey: n,
|
|
@@ -3155,16 +3151,16 @@ function zi({
|
|
|
3155
3151
|
status: a,
|
|
3156
3152
|
context: { capacity: p },
|
|
3157
3153
|
dialogMetrics: f,
|
|
3158
|
-
subComponents:
|
|
3154
|
+
subComponents: b,
|
|
3159
3155
|
graphSeries: u
|
|
3160
3156
|
},
|
|
3161
|
-
alert:
|
|
3157
|
+
alert: g,
|
|
3162
3158
|
children: /* @__PURE__ */ e(Ue, { status: a, capacity: p })
|
|
3163
3159
|
}
|
|
3164
3160
|
);
|
|
3165
3161
|
}
|
|
3166
3162
|
function yt({ status: t = "online", scale: n = 1 }) {
|
|
3167
|
-
const i = (
|
|
3163
|
+
const i = (C[t] ?? C.online).color;
|
|
3168
3164
|
return /* @__PURE__ */ e(
|
|
3169
3165
|
"div",
|
|
3170
3166
|
{
|
|
@@ -3286,7 +3282,7 @@ function Bi({
|
|
|
3286
3282
|
visibleAtPhase: l
|
|
3287
3283
|
}) {
|
|
3288
3284
|
return /* @__PURE__ */ e(
|
|
3289
|
-
|
|
3285
|
+
E,
|
|
3290
3286
|
{
|
|
3291
3287
|
ex: t,
|
|
3292
3288
|
ey: n,
|
|
@@ -3777,20 +3773,20 @@ function mt({
|
|
|
3777
3773
|
activeRoutes: h = 12,
|
|
3778
3774
|
_compact: d
|
|
3779
3775
|
}) {
|
|
3780
|
-
const [p, f] = R(n),
|
|
3776
|
+
const [p, f] = R(n), b = ie(0), u = ie(0);
|
|
3781
3777
|
ke(() => {
|
|
3782
3778
|
if (!r) {
|
|
3783
3779
|
f(n);
|
|
3784
3780
|
return;
|
|
3785
3781
|
}
|
|
3786
3782
|
const m = (w) => {
|
|
3787
|
-
u.current && f((v) => v + (w - u.current) * 0.027), u.current = w,
|
|
3783
|
+
u.current && f((v) => v + (w - u.current) * 0.027), u.current = w, b.current = requestAnimationFrame(m);
|
|
3788
3784
|
};
|
|
3789
|
-
return
|
|
3790
|
-
cancelAnimationFrame(
|
|
3785
|
+
return b.current = requestAnimationFrame(m), () => {
|
|
3786
|
+
cancelAnimationFrame(b.current), u.current = 0;
|
|
3791
3787
|
};
|
|
3792
3788
|
}, [r, n]);
|
|
3793
|
-
const
|
|
3789
|
+
const g = C[a] ?? C.online;
|
|
3794
3790
|
return /* @__PURE__ */ c(
|
|
3795
3791
|
"div",
|
|
3796
3792
|
{
|
|
@@ -3858,7 +3854,7 @@ function mt({
|
|
|
3858
3854
|
position: "absolute",
|
|
3859
3855
|
width: he * 1.3 * i,
|
|
3860
3856
|
height: Q * 2 * i,
|
|
3861
|
-
background: `radial-gradient(ellipse, ${
|
|
3857
|
+
background: `radial-gradient(ellipse, ${g.glow} 0%, transparent 65%)`,
|
|
3862
3858
|
filter: `blur(${Math.round(40 * i)}px)`,
|
|
3863
3859
|
pointerEvents: "none",
|
|
3864
3860
|
top: "40%",
|
|
@@ -3891,7 +3887,7 @@ function mt({
|
|
|
3891
3887
|
/* @__PURE__ */ e("div", { style: Ae.front, children: /* @__PURE__ */ e(
|
|
3892
3888
|
oi,
|
|
3893
3889
|
{
|
|
3894
|
-
cfg:
|
|
3890
|
+
cfg: g,
|
|
3895
3891
|
name: s,
|
|
3896
3892
|
traffic: l,
|
|
3897
3893
|
activeRoutes: h,
|
|
@@ -3899,8 +3895,8 @@ function mt({
|
|
|
3899
3895
|
}
|
|
3900
3896
|
) }),
|
|
3901
3897
|
/* @__PURE__ */ e("div", { style: Ae.back, children: /* @__PURE__ */ e(ri, {}) }),
|
|
3902
|
-
/* @__PURE__ */ e("div", { style: Ae.left, children: /* @__PURE__ */ e(Ct, { side: "left", color:
|
|
3903
|
-
/* @__PURE__ */ e("div", { style: Ae.right, children: /* @__PURE__ */ e(Ct, { side: "right", color:
|
|
3898
|
+
/* @__PURE__ */ e("div", { style: Ae.left, children: /* @__PURE__ */ e(Ct, { side: "left", color: g.color }) }),
|
|
3899
|
+
/* @__PURE__ */ e("div", { style: Ae.right, children: /* @__PURE__ */ e(Ct, { side: "right", color: g.color }) }),
|
|
3904
3900
|
/* @__PURE__ */ e("div", { style: Ae.top, children: /* @__PURE__ */ e(ai, { traffic: l }) }),
|
|
3905
3901
|
/* @__PURE__ */ e("div", { style: Ae.bottom, children: /* @__PURE__ */ e("div", { style: { width: he, height: Le, background: "#020508" } }) })
|
|
3906
3902
|
]
|
|
@@ -3925,13 +3921,13 @@ function Fi({
|
|
|
3925
3921
|
visibleAtPhase: d,
|
|
3926
3922
|
traffic: p,
|
|
3927
3923
|
activeRoutes: f,
|
|
3928
|
-
dialogMetrics:
|
|
3924
|
+
dialogMetrics: b,
|
|
3929
3925
|
subComponents: u,
|
|
3930
|
-
graphSeries:
|
|
3926
|
+
graphSeries: g,
|
|
3931
3927
|
alert: m
|
|
3932
3928
|
}) {
|
|
3933
3929
|
return /* @__PURE__ */ e(
|
|
3934
|
-
|
|
3930
|
+
E,
|
|
3935
3931
|
{
|
|
3936
3932
|
ex: t,
|
|
3937
3933
|
ey: n,
|
|
@@ -3947,9 +3943,9 @@ function Fi({
|
|
|
3947
3943
|
name: r,
|
|
3948
3944
|
status: a,
|
|
3949
3945
|
context: { traffic: p, activeRoutes: f },
|
|
3950
|
-
dialogMetrics:
|
|
3946
|
+
dialogMetrics: b,
|
|
3951
3947
|
subComponents: u,
|
|
3952
|
-
graphSeries:
|
|
3948
|
+
graphSeries: g
|
|
3953
3949
|
},
|
|
3954
3950
|
alert: m,
|
|
3955
3951
|
children: /* @__PURE__ */ e(mt, { status: a, traffic: p, activeRoutes: f })
|
|
@@ -4438,17 +4434,17 @@ function Dt({
|
|
|
4438
4434
|
instances: d = 3,
|
|
4439
4435
|
_compact: p
|
|
4440
4436
|
}) {
|
|
4441
|
-
const [f,
|
|
4437
|
+
const [f, b] = R(n), u = ie(0), g = ie(0);
|
|
4442
4438
|
ke(() => {
|
|
4443
4439
|
if (!r) {
|
|
4444
|
-
|
|
4440
|
+
b(n);
|
|
4445
4441
|
return;
|
|
4446
4442
|
}
|
|
4447
4443
|
const w = (v) => {
|
|
4448
|
-
|
|
4444
|
+
g.current && b((S) => S + (v - g.current) * 0.027), g.current = v, u.current = requestAnimationFrame(w);
|
|
4449
4445
|
};
|
|
4450
4446
|
return u.current = requestAnimationFrame(w), () => {
|
|
4451
|
-
cancelAnimationFrame(u.current),
|
|
4447
|
+
cancelAnimationFrame(u.current), g.current = 0;
|
|
4452
4448
|
};
|
|
4453
4449
|
}, [r, n]);
|
|
4454
4450
|
const m = Pt[a] ?? Pt.online;
|
|
@@ -4587,14 +4583,14 @@ function Hi({
|
|
|
4587
4583
|
visibleAtPhase: d,
|
|
4588
4584
|
queueDepth: p,
|
|
4589
4585
|
msgsPerSec: f,
|
|
4590
|
-
instances:
|
|
4586
|
+
instances: b,
|
|
4591
4587
|
dialogMetrics: u,
|
|
4592
|
-
subComponents:
|
|
4588
|
+
subComponents: g,
|
|
4593
4589
|
graphSeries: m,
|
|
4594
4590
|
alert: w
|
|
4595
4591
|
}) {
|
|
4596
4592
|
return /* @__PURE__ */ e(
|
|
4597
|
-
|
|
4593
|
+
E,
|
|
4598
4594
|
{
|
|
4599
4595
|
ex: t,
|
|
4600
4596
|
ey: n,
|
|
@@ -4609,9 +4605,9 @@ function Hi({
|
|
|
4609
4605
|
type: "messageServer",
|
|
4610
4606
|
name: r,
|
|
4611
4607
|
status: a,
|
|
4612
|
-
context: { queueDepth: p, msgsPerSec: f, instances:
|
|
4608
|
+
context: { queueDepth: p, msgsPerSec: f, instances: b },
|
|
4613
4609
|
dialogMetrics: u,
|
|
4614
|
-
subComponents:
|
|
4610
|
+
subComponents: g,
|
|
4615
4611
|
graphSeries: m
|
|
4616
4612
|
},
|
|
4617
4613
|
alert: w,
|
|
@@ -4621,13 +4617,13 @@ function Hi({
|
|
|
4621
4617
|
status: a,
|
|
4622
4618
|
queueDepth: p,
|
|
4623
4619
|
msgsPerSec: f,
|
|
4624
|
-
instances:
|
|
4620
|
+
instances: b
|
|
4625
4621
|
}
|
|
4626
4622
|
)
|
|
4627
4623
|
}
|
|
4628
4624
|
);
|
|
4629
4625
|
}
|
|
4630
|
-
function
|
|
4626
|
+
function O(t, n, o = 24) {
|
|
4631
4627
|
return Array.from({ length: o }, (i, r) => {
|
|
4632
4628
|
const a = r / o;
|
|
4633
4629
|
return Math.min(100, Math.max(0, t + Math.sin(a * Math.PI * 2) * n + (Math.random() - 0.5) * 10));
|
|
@@ -4727,34 +4723,34 @@ function fi(t, n) {
|
|
|
4727
4723
|
if (t === "server") {
|
|
4728
4724
|
const o = n.cpuLoad ?? 50, i = n.memLoad ?? 60;
|
|
4729
4725
|
return [
|
|
4730
|
-
{ id: "cpu", label: "CPU-0", unit: "%", color: "#00e5ff", data:
|
|
4731
|
-
{ id: "cpu1", label: "CPU-1", unit: "%", color: "#00e5ff", data:
|
|
4732
|
-
{ id: "heap0", label: "HEAP-0", unit: "%", color: "#8855ee", data:
|
|
4733
|
-
{ id: "heap1", label: "HEAP-1", unit: "%", color: "#8855ee", data:
|
|
4734
|
-
{ id: "drive1", label: "DRIVE-1 I/O", unit: "%", color: "#ff8c00", data:
|
|
4735
|
-
{ id: "drive2", label: "DRIVE-2 I/O", unit: "%", color: "#ff8c00", data:
|
|
4736
|
-
{ id: "drive3", label: "DRIVE-3 I/O", unit: "%", color: "#ff8c00", data:
|
|
4737
|
-
{ id: "thread", label: "THREAD-POOL", unit: "%", color: "#22aaff", data:
|
|
4726
|
+
{ id: "cpu", label: "CPU-0", unit: "%", color: "#00e5ff", data: O(o, 15) },
|
|
4727
|
+
{ id: "cpu1", label: "CPU-1", unit: "%", color: "#00e5ff", data: O(o * 0.7, 12) },
|
|
4728
|
+
{ id: "heap0", label: "HEAP-0", unit: "%", color: "#8855ee", data: O(i, 18) },
|
|
4729
|
+
{ id: "heap1", label: "HEAP-1", unit: "%", color: "#8855ee", data: O(i * 0.85, 14) },
|
|
4730
|
+
{ id: "drive1", label: "DRIVE-1 I/O", unit: "%", color: "#ff8c00", data: O(40, 25) },
|
|
4731
|
+
{ id: "drive2", label: "DRIVE-2 I/O", unit: "%", color: "#ff8c00", data: O(35, 20) },
|
|
4732
|
+
{ id: "drive3", label: "DRIVE-3 I/O", unit: "%", color: "#ff8c00", data: O(30, 22) },
|
|
4733
|
+
{ id: "thread", label: "THREAD-POOL", unit: "%", color: "#22aaff", data: O(55, 20) }
|
|
4738
4734
|
];
|
|
4739
4735
|
}
|
|
4740
4736
|
if (t === "dispatcher" || t === "messageServer") {
|
|
4741
4737
|
const o = n.traffic ?? n.queueDepth ?? 50;
|
|
4742
4738
|
return [
|
|
4743
|
-
{ id: "traffic", label: "TRAFFIC", unit: "%", color: "#00e5ff", data:
|
|
4744
|
-
{ id: "port1", label: "PORT-1", unit: "kbps", color: "#22aaff", data:
|
|
4745
|
-
{ id: "port2", label: "PORT-2", unit: "kbps", color: "#22aaff", data:
|
|
4746
|
-
{ id: "port3", label: "PORT-3", unit: "kbps", color: "#22aaff", data:
|
|
4747
|
-
{ id: "worker", label: "WORKER", unit: "%", color: "#bb55ff", data:
|
|
4739
|
+
{ id: "traffic", label: "TRAFFIC", unit: "%", color: "#00e5ff", data: O(o, 20) },
|
|
4740
|
+
{ id: "port1", label: "PORT-1", unit: "kbps", color: "#22aaff", data: O(60, 25) },
|
|
4741
|
+
{ id: "port2", label: "PORT-2", unit: "kbps", color: "#22aaff", data: O(45, 20) },
|
|
4742
|
+
{ id: "port3", label: "PORT-3", unit: "kbps", color: "#22aaff", data: O(70, 30) },
|
|
4743
|
+
{ id: "worker", label: "WORKER", unit: "%", color: "#bb55ff", data: O(o * 0.9, 15) }
|
|
4748
4744
|
];
|
|
4749
4745
|
}
|
|
4750
4746
|
if (t === "database") {
|
|
4751
4747
|
const o = n.capacity ?? 70;
|
|
4752
4748
|
return [
|
|
4753
|
-
{ id: "platter0", label: "PLATTER-0 I/O", unit: "%", color: "#ff8c00", data:
|
|
4754
|
-
{ id: "platter1", label: "PLATTER-1 I/O", unit: "%", color: "#ff8c00", data:
|
|
4755
|
-
{ id: "platter2", label: "PLATTER-2 I/O", unit: "%", color: "#ff8c00", data:
|
|
4756
|
-
{ id: "connpool", label: "CONN-POOL", unit: "%", color: "#00e5ff", data:
|
|
4757
|
-
{ id: "cache", label: "QUERY-CACHE", unit: "%", color: "#00ff88", data:
|
|
4749
|
+
{ id: "platter0", label: "PLATTER-0 I/O", unit: "%", color: "#ff8c00", data: O(40, 20) },
|
|
4750
|
+
{ id: "platter1", label: "PLATTER-1 I/O", unit: "%", color: "#ff8c00", data: O(55, 25) },
|
|
4751
|
+
{ id: "platter2", label: "PLATTER-2 I/O", unit: "%", color: "#ff8c00", data: O(35, 18) },
|
|
4752
|
+
{ id: "connpool", label: "CONN-POOL", unit: "%", color: "#00e5ff", data: O(o, 15) },
|
|
4753
|
+
{ id: "cache", label: "QUERY-CACHE", unit: "%", color: "#00ff88", data: O(75, 12) }
|
|
4758
4754
|
];
|
|
4759
4755
|
}
|
|
4760
4756
|
return [];
|
|
@@ -4768,7 +4764,7 @@ function Nt({
|
|
|
4768
4764
|
delay: a = "0s",
|
|
4769
4765
|
children: s
|
|
4770
4766
|
}) {
|
|
4771
|
-
const l = r ?
|
|
4767
|
+
const l = r ? C[r]?.glow ?? "rgba(0,229,255,0.4)" : "rgba(0,229,255,0.4)";
|
|
4772
4768
|
return /* @__PURE__ */ c(
|
|
4773
4769
|
"div",
|
|
4774
4770
|
{
|
|
@@ -4809,8 +4805,8 @@ function Nt({
|
|
|
4809
4805
|
width: 4,
|
|
4810
4806
|
height: 4,
|
|
4811
4807
|
borderRadius: "50%",
|
|
4812
|
-
background:
|
|
4813
|
-
boxShadow: `0 0 6px ${
|
|
4808
|
+
background: C[r]?.color,
|
|
4809
|
+
boxShadow: `0 0 6px ${C[r]?.color}`,
|
|
4814
4810
|
animation: "holo-led-blink 1.2s infinite"
|
|
4815
4811
|
}
|
|
4816
4812
|
}
|
|
@@ -4936,8 +4932,8 @@ function Ke({
|
|
|
4936
4932
|
width: 4,
|
|
4937
4933
|
height: 4,
|
|
4938
4934
|
borderRadius: "50%",
|
|
4939
|
-
background:
|
|
4940
|
-
boxShadow: `0 0 6px ${
|
|
4935
|
+
background: C[o]?.color,
|
|
4936
|
+
boxShadow: `0 0 6px ${C[o]?.color}`,
|
|
4941
4937
|
animation: "holo-led-blink 1.2s infinite"
|
|
4942
4938
|
}
|
|
4943
4939
|
}
|
|
@@ -5034,7 +5030,7 @@ function Ze({
|
|
|
5034
5030
|
width: 3,
|
|
5035
5031
|
height: 3,
|
|
5036
5032
|
borderRadius: "50%",
|
|
5037
|
-
background:
|
|
5033
|
+
background: C[o]?.color,
|
|
5038
5034
|
animation: "holo-led-blink 1.2s infinite"
|
|
5039
5035
|
}
|
|
5040
5036
|
}
|
|
@@ -5163,7 +5159,7 @@ function Wt({
|
|
|
5163
5159
|
}
|
|
5164
5160
|
);
|
|
5165
5161
|
}
|
|
5166
|
-
function
|
|
5162
|
+
function W({
|
|
5167
5163
|
color: t = "#00e5ff",
|
|
5168
5164
|
label: n = "THREAD",
|
|
5169
5165
|
status: o = "online"
|
|
@@ -5228,7 +5224,7 @@ function Qe({
|
|
|
5228
5224
|
width: 4,
|
|
5229
5225
|
height: 4,
|
|
5230
5226
|
borderRadius: "50%",
|
|
5231
|
-
background:
|
|
5227
|
+
background: C[o]?.color,
|
|
5232
5228
|
animation: "holo-led-blink 1.2s infinite"
|
|
5233
5229
|
}
|
|
5234
5230
|
}
|
|
@@ -5283,7 +5279,7 @@ function Y({
|
|
|
5283
5279
|
width: 4,
|
|
5284
5280
|
height: 4,
|
|
5285
5281
|
borderRadius: "50%",
|
|
5286
|
-
background: o && o !== "online" ?
|
|
5282
|
+
background: o && o !== "online" ? C[o]?.color ?? t : t,
|
|
5287
5283
|
boxShadow: `0 0 4px ${t}`,
|
|
5288
5284
|
animation: o && o !== "online" && o !== "offline" ? "holo-led-blink 1s infinite" : "none"
|
|
5289
5285
|
}
|
|
@@ -5428,7 +5424,7 @@ function hi(t, n, o, i) {
|
|
|
5428
5424
|
}
|
|
5429
5425
|
] : [];
|
|
5430
5426
|
}
|
|
5431
|
-
const
|
|
5427
|
+
const I = "cubic-bezier(0.34, 1.56, 0.64, 1)", ui = "cubic-bezier(0.16, 1, 0.3, 1)";
|
|
5432
5428
|
function bi({ items: t, revealPhase: n }) {
|
|
5433
5429
|
return /* @__PURE__ */ e(
|
|
5434
5430
|
"div",
|
|
@@ -5447,7 +5443,7 @@ function bi({ items: t, revealPhase: n }) {
|
|
|
5447
5443
|
style: {
|
|
5448
5444
|
opacity: n >= 0.2 + i * 0.06 ? 1 : 0,
|
|
5449
5445
|
transform: `scale(${n >= 0.2 + i * 0.06 ? 1 : 0.6})`,
|
|
5450
|
-
transition: `opacity 0.4s ${
|
|
5446
|
+
transition: `opacity 0.4s ${I} ${i * 0.06}s, transform 0.45s ${I} ${i * 0.06}s`
|
|
5451
5447
|
},
|
|
5452
5448
|
children: o.element
|
|
5453
5449
|
},
|
|
@@ -5463,7 +5459,7 @@ function gi({
|
|
|
5463
5459
|
internal: i,
|
|
5464
5460
|
revealPhase: r
|
|
5465
5461
|
}) {
|
|
5466
|
-
const a =
|
|
5462
|
+
const a = C[n]?.color ?? C.online.color, s = "#ff8c00";
|
|
5467
5463
|
if (t === "server") {
|
|
5468
5464
|
const l = o.cpuLoad ?? 50, h = o.memLoad ?? 60, d = [
|
|
5469
5465
|
{
|
|
@@ -5556,7 +5552,7 @@ function gi({
|
|
|
5556
5552
|
{
|
|
5557
5553
|
key: "thread",
|
|
5558
5554
|
delay: 7,
|
|
5559
|
-
el: /* @__PURE__ */ e(
|
|
5555
|
+
el: /* @__PURE__ */ e(W, { color: a, label: "THREAD-POOL", status: i[7]?.status })
|
|
5560
5556
|
},
|
|
5561
5557
|
{
|
|
5562
5558
|
key: "net",
|
|
@@ -5575,15 +5571,15 @@ function gi({
|
|
|
5575
5571
|
alignItems: "center",
|
|
5576
5572
|
padding: 24
|
|
5577
5573
|
},
|
|
5578
|
-
children: d.map(({ key: p, delay: f, el:
|
|
5574
|
+
children: d.map(({ key: p, delay: f, el: b }) => /* @__PURE__ */ e(
|
|
5579
5575
|
"div",
|
|
5580
5576
|
{
|
|
5581
5577
|
style: {
|
|
5582
5578
|
opacity: r >= 0.2 + f * 0.08 ? 1 : 0,
|
|
5583
5579
|
transform: `scale(${r >= 0.2 + f * 0.08 ? 1 : 0.6})`,
|
|
5584
|
-
transition: `opacity 0.4s ${
|
|
5580
|
+
transition: `opacity 0.4s ${I} ${f * 0.06}s, transform 0.45s ${I} ${f * 0.06}s`
|
|
5585
5581
|
},
|
|
5586
|
-
children:
|
|
5582
|
+
children: b
|
|
5587
5583
|
},
|
|
5588
5584
|
p
|
|
5589
5585
|
))
|
|
@@ -5599,7 +5595,7 @@ function gi({
|
|
|
5599
5595
|
style: {
|
|
5600
5596
|
opacity: r >= 0.25 + d * 0.04 ? 1 : 0,
|
|
5601
5597
|
transform: `scale(${r >= 0.25 + d * 0.04 ? 1 : 0.5})`,
|
|
5602
|
-
transition: `opacity 0.35s ${
|
|
5598
|
+
transition: `opacity 0.35s ${I} ${d * 0.04}s, transform 0.4s ${I} ${d * 0.04}s`
|
|
5603
5599
|
},
|
|
5604
5600
|
children: /* @__PURE__ */ e(Y, { color: a, label: `PORT-${d + 1}`, status: p?.status })
|
|
5605
5601
|
},
|
|
@@ -5625,9 +5621,9 @@ function gi({
|
|
|
5625
5621
|
style: {
|
|
5626
5622
|
opacity: r >= 0.7 ? 1 : 0,
|
|
5627
5623
|
transform: `scale(${r >= 0.7 ? 1 : 0.6})`,
|
|
5628
|
-
transition: `all 0.4s ${
|
|
5624
|
+
transition: `all 0.4s ${I} 0.3s`
|
|
5629
5625
|
},
|
|
5630
|
-
children: /* @__PURE__ */ e(
|
|
5626
|
+
children: /* @__PURE__ */ e(W, { color: a, label: "HTTP-WORKER", status: i[8]?.status })
|
|
5631
5627
|
}
|
|
5632
5628
|
),
|
|
5633
5629
|
/* @__PURE__ */ e(
|
|
@@ -5636,9 +5632,9 @@ function gi({
|
|
|
5636
5632
|
style: {
|
|
5637
5633
|
opacity: r >= 0.8 ? 1 : 0,
|
|
5638
5634
|
transform: `scale(${r >= 0.8 ? 1 : 0.6})`,
|
|
5639
|
-
transition: `all 0.4s ${
|
|
5635
|
+
transition: `all 0.4s ${I} 0.4s`
|
|
5640
5636
|
},
|
|
5641
|
-
children: /* @__PURE__ */ e(
|
|
5637
|
+
children: /* @__PURE__ */ e(W, { color: "#bb55ff", label: "HTTPS-WORKER", status: i[9]?.status })
|
|
5642
5638
|
}
|
|
5643
5639
|
)
|
|
5644
5640
|
] })
|
|
@@ -5665,7 +5661,7 @@ function gi({
|
|
|
5665
5661
|
style: {
|
|
5666
5662
|
opacity: r >= 0.25 + l * 0.1 ? 1 : 0,
|
|
5667
5663
|
transform: `scale(${r >= 0.25 + l * 0.1 ? 1 : 0.6})`,
|
|
5668
|
-
transition: `all 0.4s ${
|
|
5664
|
+
transition: `all 0.4s ${I} ${l * 0.08}s`
|
|
5669
5665
|
},
|
|
5670
5666
|
children: /* @__PURE__ */ e(Y, { color: "#bb55ff", label: `INST-${l}`, status: i[l]?.status })
|
|
5671
5667
|
},
|
|
@@ -5677,9 +5673,9 @@ function gi({
|
|
|
5677
5673
|
style: {
|
|
5678
5674
|
opacity: r >= 0.6 ? 1 : 0,
|
|
5679
5675
|
transform: `scale(${r >= 0.6 ? 1 : 0.6})`,
|
|
5680
|
-
transition: `all 0.4s ${
|
|
5676
|
+
transition: `all 0.4s ${I} 0.25s`
|
|
5681
5677
|
},
|
|
5682
|
-
children: /* @__PURE__ */ e(
|
|
5678
|
+
children: /* @__PURE__ */ e(W, { color: "#bb55ff", label: "QUEUE-0", status: i[3]?.status })
|
|
5683
5679
|
}
|
|
5684
5680
|
),
|
|
5685
5681
|
[4, 5, 6].map((l) => /* @__PURE__ */ e(
|
|
@@ -5688,10 +5684,10 @@ function gi({
|
|
|
5688
5684
|
style: {
|
|
5689
5685
|
opacity: r >= 0.7 + (l - 4) * 0.08 ? 1 : 0,
|
|
5690
5686
|
transform: `scale(${r >= 0.7 ? 1 : 0.6})`,
|
|
5691
|
-
transition: `all 0.4s ${
|
|
5687
|
+
transition: `all 0.4s ${I} ${0.35 + (l - 4) * 0.05}s`
|
|
5692
5688
|
},
|
|
5693
5689
|
children: /* @__PURE__ */ e(
|
|
5694
|
-
|
|
5690
|
+
W,
|
|
5695
5691
|
{
|
|
5696
5692
|
color: "#bb55ff",
|
|
5697
5693
|
label: `WORKER-${l - 3}`,
|
|
@@ -5724,7 +5720,7 @@ function gi({
|
|
|
5724
5720
|
style: {
|
|
5725
5721
|
opacity: r >= 0.2 + h * 0.12 ? 1 : 0,
|
|
5726
5722
|
transform: `scale(${r >= 0.2 + h * 0.12 ? 1 : 0.5})`,
|
|
5727
|
-
transition: `all 0.45s ${
|
|
5723
|
+
transition: `all 0.45s ${I} ${h * 0.1}s`
|
|
5728
5724
|
},
|
|
5729
5725
|
children: /* @__PURE__ */ e(
|
|
5730
5726
|
Qe,
|
|
@@ -5744,9 +5740,9 @@ function gi({
|
|
|
5744
5740
|
style: {
|
|
5745
5741
|
opacity: r >= 0.6 ? 1 : 0,
|
|
5746
5742
|
transform: `scale(${r >= 0.6 ? 1 : 0.6})`,
|
|
5747
|
-
transition: `all 0.4s ${
|
|
5743
|
+
transition: `all 0.4s ${I} 0.3s`
|
|
5748
5744
|
},
|
|
5749
|
-
children: /* @__PURE__ */ e(
|
|
5745
|
+
children: /* @__PURE__ */ e(W, { color: s, label: "CONN-POOL", status: i[3]?.status })
|
|
5750
5746
|
}
|
|
5751
5747
|
),
|
|
5752
5748
|
/* @__PURE__ */ e(
|
|
@@ -5755,9 +5751,9 @@ function gi({
|
|
|
5755
5751
|
style: {
|
|
5756
5752
|
opacity: r >= 0.75 ? 1 : 0,
|
|
5757
5753
|
transform: `scale(${r >= 0.75 ? 1 : 0.6})`,
|
|
5758
|
-
transition: `all 0.4s ${
|
|
5754
|
+
transition: `all 0.4s ${I} 0.4s`
|
|
5759
5755
|
},
|
|
5760
|
-
children: /* @__PURE__ */ e(
|
|
5756
|
+
children: /* @__PURE__ */ e(W, { color: "#00ff88", label: "QUERY-CACHE", status: i[4]?.status })
|
|
5761
5757
|
}
|
|
5762
5758
|
)
|
|
5763
5759
|
]
|
|
@@ -5776,7 +5772,7 @@ function Ui({
|
|
|
5776
5772
|
subComponents: s,
|
|
5777
5773
|
graphSeries: l
|
|
5778
5774
|
}) {
|
|
5779
|
-
const h = hi(t, n, o, a), d =
|
|
5775
|
+
const h = hi(t, n, o, a), d = C[o]?.color ?? C.online.color, p = r >= 0.1 ? 1 : r * 10, f = r >= 0.2 ? "-50%" : "0%", b = r >= 0.2 ? "50%" : "0%", u = r >= 0.25 ? Math.min(1, (r - 0.25) * 1.5) : 0;
|
|
5780
5776
|
return /* @__PURE__ */ c(
|
|
5781
5777
|
"div",
|
|
5782
5778
|
{
|
|
@@ -5788,7 +5784,7 @@ function Ui({
|
|
|
5788
5784
|
flexDirection: "row",
|
|
5789
5785
|
pointerEvents: "auto"
|
|
5790
5786
|
},
|
|
5791
|
-
onClick: (
|
|
5787
|
+
onClick: (g) => g.stopPropagation(),
|
|
5792
5788
|
children: [
|
|
5793
5789
|
/* @__PURE__ */ e(
|
|
5794
5790
|
"div",
|
|
@@ -5850,7 +5846,7 @@ function Ui({
|
|
|
5850
5846
|
borderRight: `2px solid ${d}44`,
|
|
5851
5847
|
boxShadow: "4px 0 32px rgba(0,0,0,0.6)",
|
|
5852
5848
|
transform: `translateX(${f})`,
|
|
5853
|
-
transition: `transform 0.7s ${
|
|
5849
|
+
transition: `transform 0.7s ${I}`
|
|
5854
5850
|
}
|
|
5855
5851
|
}
|
|
5856
5852
|
),
|
|
@@ -5864,8 +5860,8 @@ function Ui({
|
|
|
5864
5860
|
background: "linear-gradient(90deg, rgba(2, 12, 28, 0.95) 0%, rgba(2, 8, 20, 0.98) 100%)",
|
|
5865
5861
|
borderLeft: `2px solid ${d}44`,
|
|
5866
5862
|
boxShadow: "-4px 0 32px rgba(0,0,0,0.6)",
|
|
5867
|
-
transform: `translateX(${
|
|
5868
|
-
transition: `transform 0.7s ${
|
|
5863
|
+
transform: `translateX(${b})`,
|
|
5864
|
+
transition: `transform 0.7s ${I}`
|
|
5869
5865
|
}
|
|
5870
5866
|
}
|
|
5871
5867
|
)
|
|
@@ -5888,7 +5884,7 @@ function Ui({
|
|
|
5888
5884
|
display: "flex",
|
|
5889
5885
|
flexDirection: "column",
|
|
5890
5886
|
opacity: u >= 0.1 ? 1 : 0,
|
|
5891
|
-
transition: `opacity 0.5s ${
|
|
5887
|
+
transition: `opacity 0.5s ${I} 0.2s`
|
|
5892
5888
|
},
|
|
5893
5889
|
children: [
|
|
5894
5890
|
/* @__PURE__ */ c(
|
|
@@ -6118,38 +6114,38 @@ function wi(t) {
|
|
|
6118
6114
|
return t;
|
|
6119
6115
|
}
|
|
6120
6116
|
function Si({ config: t, children: n }) {
|
|
6121
|
-
const [o, i] = R({}), [r, a] = R(null), [s, l] = R(!1), [h, d] = R(null), [p, f] = R(null),
|
|
6122
|
-
|
|
6117
|
+
const [o, i] = R({}), [r, a] = R(null), [s, l] = R(!1), [h, d] = R(null), [p, f] = R(null), b = ie(t);
|
|
6118
|
+
b.current = t;
|
|
6123
6119
|
const u = ie(r);
|
|
6124
6120
|
u.current = r;
|
|
6125
|
-
const
|
|
6126
|
-
const v = u.current, S =
|
|
6121
|
+
const g = Ge(async () => {
|
|
6122
|
+
const v = u.current, S = b.current;
|
|
6127
6123
|
if (v) {
|
|
6128
6124
|
l(!0);
|
|
6129
6125
|
try {
|
|
6130
6126
|
const y = await Promise.allSettled(
|
|
6131
|
-
S.queries.map((
|
|
6132
|
-
const
|
|
6133
|
-
return fetch(
|
|
6127
|
+
S.queries.map(($) => {
|
|
6128
|
+
const H = S.endpoint.includes("?") ? "&" : "?", L = `${S.endpoint}${H}query=${encodeURIComponent($)}`;
|
|
6129
|
+
return fetch(L, {
|
|
6134
6130
|
method: "GET",
|
|
6135
6131
|
headers: {
|
|
6136
6132
|
"access-key": v.accessKey,
|
|
6137
6133
|
"access-secret-key": v.secretKey
|
|
6138
6134
|
}
|
|
6139
|
-
}).then((
|
|
6140
|
-
if (!
|
|
6141
|
-
return
|
|
6142
|
-
}).then((
|
|
6135
|
+
}).then((M) => {
|
|
6136
|
+
if (!M.ok) throw new Error(`HTTP ${M.status}`);
|
|
6137
|
+
return M.text();
|
|
6138
|
+
}).then((M) => ({ query: $, data: M.trim() }));
|
|
6143
6139
|
})
|
|
6144
6140
|
), x = {};
|
|
6145
|
-
let
|
|
6146
|
-
for (const
|
|
6147
|
-
|
|
6148
|
-
i((
|
|
6141
|
+
let A = 0;
|
|
6142
|
+
for (const $ of y)
|
|
6143
|
+
$.status === "fulfilled" ? x[$.value.query] = $.value.data : A++;
|
|
6144
|
+
i(($) => ({ ...$, ...x }));
|
|
6149
6145
|
const k = S.queries.length;
|
|
6150
6146
|
d(
|
|
6151
|
-
|
|
6152
|
-
),
|
|
6147
|
+
A > 0 ? `${A} of ${k} queries failed to refresh` : null
|
|
6148
|
+
), A < k && f(/* @__PURE__ */ new Date());
|
|
6153
6149
|
} catch (y) {
|
|
6154
6150
|
const x = y instanceof Error ? y.message : "Refresh failed";
|
|
6155
6151
|
d(x);
|
|
@@ -6160,10 +6156,10 @@ function Si({ config: t, children: n }) {
|
|
|
6160
6156
|
}, []);
|
|
6161
6157
|
ke(() => {
|
|
6162
6158
|
if (!r) return;
|
|
6163
|
-
|
|
6164
|
-
const v =
|
|
6159
|
+
g();
|
|
6160
|
+
const v = b.current.refreshInterval ?? 6e4, S = window.setInterval(g, v);
|
|
6165
6161
|
return () => clearInterval(S);
|
|
6166
|
-
}, [r,
|
|
6162
|
+
}, [r, g]);
|
|
6167
6163
|
const m = Ge((v) => {
|
|
6168
6164
|
a(v);
|
|
6169
6165
|
}, []), w = {
|
|
@@ -6209,30 +6205,30 @@ function At({
|
|
|
6209
6205
|
dataTransform: h,
|
|
6210
6206
|
children: d
|
|
6211
6207
|
}) {
|
|
6212
|
-
const p = xi(), [f] = R(20), [
|
|
6213
|
-
w === "compact" && (
|
|
6208
|
+
const p = xi(), [f] = R(20), [b] = R(!1), [u] = R(!0), [g] = R(0.45), [m] = R(3.3), [w, v] = R("compact"), [S, y] = R(0), [x, A] = R(null), [k, $] = R(null), [H, L] = R(0), M = (T) => {
|
|
6209
|
+
w === "compact" && (A(T), v("expanding"), y(0), setTimeout(() => y(1), 50), setTimeout(() => y(2), 800), setTimeout(() => y(3), 1200), setTimeout(() => y(4), 1600), setTimeout(() => y(5), 2e3), setTimeout(() => {
|
|
6214
6210
|
y(6), v("expanded");
|
|
6215
6211
|
}, 2400));
|
|
6216
6212
|
}, K = () => {
|
|
6217
|
-
k ? (
|
|
6213
|
+
k ? ($(null), L(0)) : w === "expanded" && (v("collapsing"), y(0), A(null), setTimeout(() => {
|
|
6218
6214
|
v((T) => T === "collapsing" ? "compact" : T);
|
|
6219
6215
|
}, 1e3));
|
|
6220
6216
|
}, Z = Ge((T) => {
|
|
6221
|
-
|
|
6217
|
+
$(T), L(0);
|
|
6222
6218
|
}, []), ye = Ge((T) => {
|
|
6223
|
-
|
|
6219
|
+
$(T);
|
|
6224
6220
|
}, []);
|
|
6225
6221
|
q.useEffect(() => {
|
|
6226
6222
|
if (!k) return;
|
|
6227
|
-
const T = performance.now(), j = 1200,
|
|
6228
|
-
const V = performance.now() - T,
|
|
6229
|
-
|
|
6230
|
-
}, ee = requestAnimationFrame(
|
|
6223
|
+
const T = performance.now(), j = 1200, oe = () => {
|
|
6224
|
+
const V = performance.now() - T, re = Math.min(1, V / j);
|
|
6225
|
+
L(re), re < 1 && requestAnimationFrame(oe);
|
|
6226
|
+
}, ee = requestAnimationFrame(oe);
|
|
6231
6227
|
return () => cancelAnimationFrame(ee);
|
|
6232
6228
|
}, [k]);
|
|
6233
6229
|
const me = () => {
|
|
6234
|
-
|
|
6235
|
-
},
|
|
6230
|
+
$(null), L(0);
|
|
6231
|
+
}, D = h ?? wi, U = p?.data, { enhancedChildren: ne, liveAlerts: Be } = Tt(() => {
|
|
6236
6232
|
const T = {};
|
|
6237
6233
|
if (!U || !l) return { enhancedChildren: d, liveAlerts: T };
|
|
6238
6234
|
const j = {};
|
|
@@ -6240,16 +6236,16 @@ function At({
|
|
|
6240
6236
|
if (!q.isValidElement(ee)) return ee;
|
|
6241
6237
|
const V = ee.props.name;
|
|
6242
6238
|
if (!V || !l[V]) return ee;
|
|
6243
|
-
const
|
|
6244
|
-
for (const [pe,
|
|
6245
|
-
const rt = typeof
|
|
6239
|
+
const re = l[V], ve = {}, ae = {};
|
|
6240
|
+
for (const [pe, B] of Object.entries(re)) {
|
|
6241
|
+
const rt = typeof B == "string" ? B : B.query, at = typeof B == "object" && B.transform ? B.transform : D, Ye = U[rt];
|
|
6246
6242
|
if (Ye === void 0) continue;
|
|
6247
6243
|
const we = at(Ye);
|
|
6248
|
-
if (ve[pe] = we, typeof
|
|
6249
|
-
const { prop:
|
|
6244
|
+
if (ve[pe] = we, typeof B == "object" && B.alert && typeof we == "number") {
|
|
6245
|
+
const { prop: F, warnAt: Ve = 70, critAt: St = 85, label: Ft } = B.alert, _e = Ft ?? pe, je = Math.round(we);
|
|
6250
6246
|
if (we >= St) {
|
|
6251
|
-
const He =
|
|
6252
|
-
(!He || He.severity < 2) && (
|
|
6247
|
+
const He = ae[F];
|
|
6248
|
+
(!He || He.severity < 2) && (ae[F] = {
|
|
6253
6249
|
msg: `${_e} critical — ${je}%`,
|
|
6254
6250
|
internalRef: pe,
|
|
6255
6251
|
severity: 2
|
|
@@ -6258,8 +6254,8 @@ function At({
|
|
|
6258
6254
|
message: `${_e} at ${je}% — exceeds critical threshold (${St}%)`
|
|
6259
6255
|
});
|
|
6260
6256
|
} else if (we >= Ve) {
|
|
6261
|
-
const He =
|
|
6262
|
-
(!He || He.severity < 1) && (
|
|
6257
|
+
const He = ae[F];
|
|
6258
|
+
(!He || He.severity < 1) && (ae[F] = {
|
|
6263
6259
|
msg: `${_e} elevated — ${je}%`,
|
|
6264
6260
|
internalRef: pe,
|
|
6265
6261
|
severity: 1
|
|
@@ -6270,11 +6266,11 @@ function At({
|
|
|
6270
6266
|
}
|
|
6271
6267
|
}
|
|
6272
6268
|
}
|
|
6273
|
-
for (const [pe,
|
|
6274
|
-
ve[pe] = { msg:
|
|
6269
|
+
for (const [pe, B] of Object.entries(ae))
|
|
6270
|
+
ve[pe] = { msg: B.msg, internalRef: B.internalRef };
|
|
6275
6271
|
return Object.keys(ve).length > 0 ? q.cloneElement(ee, ve) : ee;
|
|
6276
6272
|
}), liveAlerts: j };
|
|
6277
|
-
}, [d, U, l,
|
|
6273
|
+
}, [d, U, l, D]), le = o.find((T) => T.name === x), Fe = le?.status ?? "online", J = le?.dbSync ?? !0, z = le?.metrics, _ = Be[x ?? ""] ?? [], se = le?.alerts ?? [], de = _.length > 0 ? [..._, ...se.filter((T) => T.level !== "info")] : se, Ce = p?.lastRefreshError ?? null, it = 330, nt = 340, xe = k ? 1.15 : 1, ce = k ? -(k.ex - it) * 0.06 : 0, ot = k ? -(k.ey - nt) * 0.06 : 0;
|
|
6278
6274
|
return /* @__PURE__ */ c("div", { className: "app", style: s ? { fontFamily: s } : void 0, children: [
|
|
6279
6275
|
/* @__PURE__ */ e(
|
|
6280
6276
|
"div",
|
|
@@ -6322,22 +6318,22 @@ function At({
|
|
|
6322
6318
|
animPhase: S,
|
|
6323
6319
|
selectedSystem: x,
|
|
6324
6320
|
selectedComponent: k,
|
|
6325
|
-
drillAnimPhase:
|
|
6321
|
+
drillAnimPhase: H,
|
|
6326
6322
|
rotateY: f,
|
|
6327
|
-
autoRotateComponents:
|
|
6328
|
-
componentScale:
|
|
6323
|
+
autoRotateComponents: b,
|
|
6324
|
+
componentScale: g,
|
|
6329
6325
|
drillZoom: m,
|
|
6330
6326
|
autoRotateCarousel: u,
|
|
6331
6327
|
carouselSpeed: a,
|
|
6332
6328
|
logoUrl: r,
|
|
6333
|
-
onSelectSystem:
|
|
6329
|
+
onSelectSystem: M,
|
|
6334
6330
|
onBackgroundClick: K,
|
|
6335
6331
|
onComponentClick: Z,
|
|
6336
6332
|
onComponentUpdate: ye,
|
|
6337
6333
|
onCloseDrill: me,
|
|
6338
6334
|
selectedSystemStatus: Fe,
|
|
6339
6335
|
selectedSystemDbSync: J,
|
|
6340
|
-
selectedSystemMetrics:
|
|
6336
|
+
selectedSystemMetrics: z,
|
|
6341
6337
|
selectedSystemAlerts: de,
|
|
6342
6338
|
children: ne
|
|
6343
6339
|
}
|
|
@@ -6346,7 +6342,7 @@ function At({
|
|
|
6346
6342
|
)
|
|
6347
6343
|
] });
|
|
6348
6344
|
}
|
|
6349
|
-
function
|
|
6345
|
+
function P(t, n, o = 24) {
|
|
6350
6346
|
return Array.from({ length: o }, (i, r) => {
|
|
6351
6347
|
const a = r / o;
|
|
6352
6348
|
return Math.min(100, Math.max(0, t + Math.sin(a * Math.PI * 2) * n + (Math.random() - 0.5) * 10));
|
|
@@ -6365,21 +6361,21 @@ function Ne(t, n, o) {
|
|
|
6365
6361
|
{ id: "drive-1", label: "DRIVE-1", status: "online", element: /* @__PURE__ */ e(De, { color: r, label: "DRIVE-1", status: "online", activity: !0 }) },
|
|
6366
6362
|
{ id: "drive-2", label: "DRIVE-2", status: "online", element: /* @__PURE__ */ e(De, { color: r, label: "DRIVE-2", status: "online", activity: a > 30 }) },
|
|
6367
6363
|
{ id: "drive-3", label: "DRIVE-3", status: "online", element: /* @__PURE__ */ e(De, { color: r, label: "DRIVE-3", status: "online", activity: a > 50 }) },
|
|
6368
|
-
{ id: "thread-pool", label: "THREAD-POOL", status: d, detail: d === "critical" ? "Thread exhaustion" : void 0, element: /* @__PURE__ */ e(
|
|
6364
|
+
{ id: "thread-pool", label: "THREAD-POOL", status: d, detail: d === "critical" ? "Thread exhaustion" : void 0, element: /* @__PURE__ */ e(W, { color: r, label: "THREAD-POOL", status: d }) },
|
|
6369
6365
|
{ id: "network", label: "NET", status: p, element: /* @__PURE__ */ e(Wt, { color: r, label: "NET", status: p }) }
|
|
6370
6366
|
];
|
|
6371
6367
|
}
|
|
6372
6368
|
function We(t) {
|
|
6373
6369
|
const n = t?.cpuLoad ?? 50, o = t?.memLoad ?? 60;
|
|
6374
6370
|
return [
|
|
6375
|
-
{ id: "cpu", label: "CPU-0", unit: "%", color: "#00e5ff", data:
|
|
6376
|
-
{ id: "cpu1", label: "CPU-1", unit: "%", color: "#00e5ff", data:
|
|
6377
|
-
{ id: "heap0", label: "HEAP-0", unit: "%", color: "#8855ee", data:
|
|
6378
|
-
{ id: "heap1", label: "HEAP-1", unit: "%", color: "#8855ee", data:
|
|
6379
|
-
{ id: "drive1", label: "DRIVE-1 I/O", unit: "%", color: "#ff8c00", data:
|
|
6380
|
-
{ id: "drive2", label: "DRIVE-2 I/O", unit: "%", color: "#ff8c00", data:
|
|
6381
|
-
{ id: "drive3", label: "DRIVE-3 I/O", unit: "%", color: "#ff8c00", data:
|
|
6382
|
-
{ id: "thread", label: "THREAD-POOL", unit: "%", color: "#22aaff", data:
|
|
6371
|
+
{ id: "cpu", label: "CPU-0", unit: "%", color: "#00e5ff", data: P(n, 15) },
|
|
6372
|
+
{ id: "cpu1", label: "CPU-1", unit: "%", color: "#00e5ff", data: P(n * 0.7, 12) },
|
|
6373
|
+
{ id: "heap0", label: "HEAP-0", unit: "%", color: "#8855ee", data: P(o, 18) },
|
|
6374
|
+
{ id: "heap1", label: "HEAP-1", unit: "%", color: "#8855ee", data: P(o * 0.85, 14) },
|
|
6375
|
+
{ id: "drive1", label: "DRIVE-1 I/O", unit: "%", color: "#ff8c00", data: P(40, 25) },
|
|
6376
|
+
{ id: "drive2", label: "DRIVE-2 I/O", unit: "%", color: "#ff8c00", data: P(35, 20) },
|
|
6377
|
+
{ id: "drive3", label: "DRIVE-3 I/O", unit: "%", color: "#ff8c00", data: P(30, 22) },
|
|
6378
|
+
{ id: "thread", label: "THREAD-POOL", unit: "%", color: "#22aaff", data: P(55, 20) }
|
|
6383
6379
|
];
|
|
6384
6380
|
}
|
|
6385
6381
|
function zt(t, n, o) {
|
|
@@ -6393,18 +6389,18 @@ function zt(t, n, o) {
|
|
|
6393
6389
|
{ id: "port-6", label: "PORT-6", status: "online", element: /* @__PURE__ */ e(Y, { color: r, label: "PORT-6", status: "online" }) },
|
|
6394
6390
|
{ id: "port-7", label: "PORT-7", status: "online", element: /* @__PURE__ */ e(Y, { color: r, label: "PORT-7", status: "online" }) },
|
|
6395
6391
|
{ id: "port-8", label: "PORT-8", status: "online", element: /* @__PURE__ */ e(Y, { color: r, label: "PORT-8", status: "online" }) },
|
|
6396
|
-
{ id: "http-worker", label: "HTTP-WORKER", status: l, detail: l === "critical" ? "Worker timeout" : void 0, element: /* @__PURE__ */ e(
|
|
6397
|
-
{ id: "https-worker", label: "HTTPS-WORKER", status: "online", element: /* @__PURE__ */ e(
|
|
6392
|
+
{ id: "http-worker", label: "HTTP-WORKER", status: l, detail: l === "critical" ? "Worker timeout" : void 0, element: /* @__PURE__ */ e(W, { color: r, label: "HTTP-WORKER", status: l }) },
|
|
6393
|
+
{ id: "https-worker", label: "HTTPS-WORKER", status: "online", element: /* @__PURE__ */ e(W, { color: "#bb55ff", label: "HTTPS-WORKER", status: "online" }) }
|
|
6398
6394
|
];
|
|
6399
6395
|
}
|
|
6400
6396
|
function Bt(t) {
|
|
6401
6397
|
const n = t?.traffic ?? 50;
|
|
6402
6398
|
return [
|
|
6403
|
-
{ id: "traffic", label: "TRAFFIC", unit: "%", color: "#00e5ff", data:
|
|
6404
|
-
{ id: "port1", label: "PORT-1", unit: "kbps", color: "#22aaff", data:
|
|
6405
|
-
{ id: "port2", label: "PORT-2", unit: "kbps", color: "#22aaff", data:
|
|
6406
|
-
{ id: "port3", label: "PORT-3", unit: "kbps", color: "#22aaff", data:
|
|
6407
|
-
{ id: "worker", label: "WORKER", unit: "%", color: "#bb55ff", data:
|
|
6399
|
+
{ id: "traffic", label: "TRAFFIC", unit: "%", color: "#00e5ff", data: P(n, 20) },
|
|
6400
|
+
{ id: "port1", label: "PORT-1", unit: "kbps", color: "#22aaff", data: P(60, 25) },
|
|
6401
|
+
{ id: "port2", label: "PORT-2", unit: "kbps", color: "#22aaff", data: P(45, 20) },
|
|
6402
|
+
{ id: "port3", label: "PORT-3", unit: "kbps", color: "#22aaff", data: P(70, 30) },
|
|
6403
|
+
{ id: "worker", label: "WORKER", unit: "%", color: "#bb55ff", data: P(n * 0.9, 15) }
|
|
6408
6404
|
];
|
|
6409
6405
|
}
|
|
6410
6406
|
function $i(t, n, o) {
|
|
@@ -6413,20 +6409,20 @@ function $i(t, n, o) {
|
|
|
6413
6409
|
{ id: "inst-0", label: "INST-0", status: "online", element: /* @__PURE__ */ e(Y, { color: "#bb55ff", label: "INST-0", status: "online" }) },
|
|
6414
6410
|
{ id: "inst-1", label: "INST-1", status: "online", element: /* @__PURE__ */ e(Y, { color: "#bb55ff", label: "INST-1", status: "online" }) },
|
|
6415
6411
|
{ id: "inst-2", label: "INST-2", status: r, detail: r === "critical" ? "Instance unreachable" : void 0, element: /* @__PURE__ */ e(Y, { color: "#bb55ff", label: "INST-2", status: r }) },
|
|
6416
|
-
{ id: "queue-0", label: "QUEUE-0", status: a, detail: i === "critical" ? "Queue full" : i === "offline" ? "Unreachable" : i === "warning" ? "Queue depth warning" : void 0, element: /* @__PURE__ */ e(
|
|
6417
|
-
{ id: "worker-1", label: "WORKER-1", status: "online", element: /* @__PURE__ */ e(
|
|
6418
|
-
{ id: "worker-2", label: "WORKER-2", status: "online", element: /* @__PURE__ */ e(
|
|
6419
|
-
{ id: "worker-3", label: "WORKER-3", status: s, detail: s === "critical" ? "Worker timeout" : void 0, element: /* @__PURE__ */ e(
|
|
6412
|
+
{ id: "queue-0", label: "QUEUE-0", status: a, detail: i === "critical" ? "Queue full" : i === "offline" ? "Unreachable" : i === "warning" ? "Queue depth warning" : void 0, element: /* @__PURE__ */ e(W, { color: "#bb55ff", label: "QUEUE-0", status: a }) },
|
|
6413
|
+
{ id: "worker-1", label: "WORKER-1", status: "online", element: /* @__PURE__ */ e(W, { color: "#bb55ff", label: "WORKER-1", status: "online" }) },
|
|
6414
|
+
{ id: "worker-2", label: "WORKER-2", status: "online", element: /* @__PURE__ */ e(W, { color: "#bb55ff", label: "WORKER-2", status: "online" }) },
|
|
6415
|
+
{ id: "worker-3", label: "WORKER-3", status: s, detail: s === "critical" ? "Worker timeout" : void 0, element: /* @__PURE__ */ e(W, { color: "#bb55ff", label: "WORKER-3", status: s }) }
|
|
6420
6416
|
];
|
|
6421
6417
|
}
|
|
6422
6418
|
function ki(t) {
|
|
6423
6419
|
const n = t?.queueDepth ?? 50;
|
|
6424
6420
|
return [
|
|
6425
|
-
{ id: "traffic", label: "TRAFFIC", unit: "%", color: "#00e5ff", data:
|
|
6426
|
-
{ id: "port1", label: "PORT-1", unit: "kbps", color: "#22aaff", data:
|
|
6427
|
-
{ id: "port2", label: "PORT-2", unit: "kbps", color: "#22aaff", data:
|
|
6428
|
-
{ id: "port3", label: "PORT-3", unit: "kbps", color: "#22aaff", data:
|
|
6429
|
-
{ id: "worker", label: "WORKER", unit: "%", color: "#bb55ff", data:
|
|
6421
|
+
{ id: "traffic", label: "TRAFFIC", unit: "%", color: "#00e5ff", data: P(n, 20) },
|
|
6422
|
+
{ id: "port1", label: "PORT-1", unit: "kbps", color: "#22aaff", data: P(60, 25) },
|
|
6423
|
+
{ id: "port2", label: "PORT-2", unit: "kbps", color: "#22aaff", data: P(45, 20) },
|
|
6424
|
+
{ id: "port3", label: "PORT-3", unit: "kbps", color: "#22aaff", data: P(70, 30) },
|
|
6425
|
+
{ id: "worker", label: "WORKER", unit: "%", color: "#bb55ff", data: P(n * 0.9, 15) }
|
|
6430
6426
|
];
|
|
6431
6427
|
}
|
|
6432
6428
|
function Je(t, n, o) {
|
|
@@ -6435,18 +6431,18 @@ function Je(t, n, o) {
|
|
|
6435
6431
|
{ id: "platter-0", label: "PLATTER-0", status: "online", element: /* @__PURE__ */ e(Qe, { color: r, label: "PLATTER-0", status: "online", capacityPercent: a }) },
|
|
6436
6432
|
{ id: "platter-1", label: "PLATTER-1", status: s, detail: i === "critical" ? "I/O failure" : i === "offline" ? "Connection lost" : i === "warning" ? "Slow queries" : void 0, element: /* @__PURE__ */ e(Qe, { color: r, label: "PLATTER-1", status: s, capacityPercent: a }) },
|
|
6437
6433
|
{ id: "platter-2", label: "PLATTER-2", status: l, detail: l === "warning" ? "Replication lag" : void 0, element: /* @__PURE__ */ e(Qe, { color: r, label: "PLATTER-2", status: l, capacityPercent: a }) },
|
|
6438
|
-
{ id: "conn-pool", label: "CONN-POOL", status: h, detail: h === "critical" ? "Pool exhausted" : void 0, element: /* @__PURE__ */ e(
|
|
6439
|
-
{ id: "query-cache", label: "QUERY-CACHE", status: d, detail: d === "warning" ? "Cache miss rate" : void 0, element: /* @__PURE__ */ e(
|
|
6434
|
+
{ id: "conn-pool", label: "CONN-POOL", status: h, detail: h === "critical" ? "Pool exhausted" : void 0, element: /* @__PURE__ */ e(W, { color: r, label: "CONN-POOL", status: h }) },
|
|
6435
|
+
{ id: "query-cache", label: "QUERY-CACHE", status: d, detail: d === "warning" ? "Cache miss rate" : void 0, element: /* @__PURE__ */ e(W, { color: "#00ff88", label: "QUERY-CACHE", status: d }) }
|
|
6440
6436
|
];
|
|
6441
6437
|
}
|
|
6442
6438
|
function et(t) {
|
|
6443
6439
|
const n = t?.capacity ?? 70;
|
|
6444
6440
|
return [
|
|
6445
|
-
{ id: "platter0", label: "PLATTER-0 I/O", unit: "%", color: "#ff8c00", data:
|
|
6446
|
-
{ id: "platter1", label: "PLATTER-1 I/O", unit: "%", color: "#ff8c00", data:
|
|
6447
|
-
{ id: "platter2", label: "PLATTER-2 I/O", unit: "%", color: "#ff8c00", data:
|
|
6448
|
-
{ id: "connpool", label: "CONN-POOL", unit: "%", color: "#00e5ff", data:
|
|
6449
|
-
{ id: "cache", label: "QUERY-CACHE", unit: "%", color: "#00ff88", data:
|
|
6441
|
+
{ id: "platter0", label: "PLATTER-0 I/O", unit: "%", color: "#ff8c00", data: P(40, 20) },
|
|
6442
|
+
{ id: "platter1", label: "PLATTER-1 I/O", unit: "%", color: "#ff8c00", data: P(55, 25) },
|
|
6443
|
+
{ id: "platter2", label: "PLATTER-2 I/O", unit: "%", color: "#ff8c00", data: P(35, 18) },
|
|
6444
|
+
{ id: "connpool", label: "CONN-POOL", unit: "%", color: "#00e5ff", data: P(n, 15) },
|
|
6445
|
+
{ id: "cache", label: "QUERY-CACHE", unit: "%", color: "#00ff88", data: P(75, 12) }
|
|
6450
6446
|
];
|
|
6451
6447
|
}
|
|
6452
6448
|
function vt(t) {
|
|
@@ -6509,7 +6505,7 @@ function Ci({ config: t }) {
|
|
|
6509
6505
|
const n = q.useContext(Re), o = n?.rotateY ?? 20, i = n?.autoRotateComponents ?? !0, { wdStatus: r, msStatus: a, srv1Status: s, srv2Status: l, srv3Status: h, pdbStatus: d, sdbStatus: p, dbSync: f } = t;
|
|
6510
6506
|
return /* @__PURE__ */ c(Me, { children: [
|
|
6511
6507
|
/* @__PURE__ */ e(
|
|
6512
|
-
|
|
6508
|
+
E,
|
|
6513
6509
|
{
|
|
6514
6510
|
ex: 330,
|
|
6515
6511
|
ey: 120,
|
|
@@ -6521,7 +6517,7 @@ function Ci({ config: t }) {
|
|
|
6521
6517
|
}
|
|
6522
6518
|
),
|
|
6523
6519
|
/* @__PURE__ */ e(
|
|
6524
|
-
|
|
6520
|
+
E,
|
|
6525
6521
|
{
|
|
6526
6522
|
ex: 220,
|
|
6527
6523
|
ey: 260,
|
|
@@ -6554,7 +6550,7 @@ function Ci({ config: t }) {
|
|
|
6554
6550
|
}
|
|
6555
6551
|
),
|
|
6556
6552
|
/* @__PURE__ */ e(
|
|
6557
|
-
|
|
6553
|
+
E,
|
|
6558
6554
|
{
|
|
6559
6555
|
ex: 440,
|
|
6560
6556
|
ey: 260,
|
|
@@ -6588,7 +6584,7 @@ function Ci({ config: t }) {
|
|
|
6588
6584
|
}
|
|
6589
6585
|
),
|
|
6590
6586
|
/* @__PURE__ */ e(
|
|
6591
|
-
|
|
6587
|
+
E,
|
|
6592
6588
|
{
|
|
6593
6589
|
ex: 165,
|
|
6594
6590
|
ey: 390,
|
|
@@ -6621,7 +6617,7 @@ function Ci({ config: t }) {
|
|
|
6621
6617
|
}
|
|
6622
6618
|
),
|
|
6623
6619
|
/* @__PURE__ */ e(
|
|
6624
|
-
|
|
6620
|
+
E,
|
|
6625
6621
|
{
|
|
6626
6622
|
ex: 330,
|
|
6627
6623
|
ey: 390,
|
|
@@ -6654,7 +6650,7 @@ function Ci({ config: t }) {
|
|
|
6654
6650
|
}
|
|
6655
6651
|
),
|
|
6656
6652
|
/* @__PURE__ */ e(
|
|
6657
|
-
|
|
6653
|
+
E,
|
|
6658
6654
|
{
|
|
6659
6655
|
ex: 495,
|
|
6660
6656
|
ey: 390,
|
|
@@ -6687,7 +6683,7 @@ function Ci({ config: t }) {
|
|
|
6687
6683
|
}
|
|
6688
6684
|
),
|
|
6689
6685
|
/* @__PURE__ */ e(
|
|
6690
|
-
|
|
6686
|
+
E,
|
|
6691
6687
|
{
|
|
6692
6688
|
ex: 200,
|
|
6693
6689
|
ey: 520,
|
|
@@ -6720,7 +6716,7 @@ function Ci({ config: t }) {
|
|
|
6720
6716
|
}
|
|
6721
6717
|
),
|
|
6722
6718
|
/* @__PURE__ */ e(
|
|
6723
|
-
|
|
6719
|
+
E,
|
|
6724
6720
|
{
|
|
6725
6721
|
ex: 460,
|
|
6726
6722
|
ey: 520,
|
|
@@ -6753,7 +6749,7 @@ function Ci({ config: t }) {
|
|
|
6753
6749
|
}
|
|
6754
6750
|
),
|
|
6755
6751
|
/* @__PURE__ */ e(
|
|
6756
|
-
|
|
6752
|
+
E,
|
|
6757
6753
|
{
|
|
6758
6754
|
ex: 330,
|
|
6759
6755
|
ey: 520,
|
|
@@ -6772,7 +6768,7 @@ function Pi({ config: t }) {
|
|
|
6772
6768
|
const n = q.useContext(Re), { wdStatus: o, msStatus: i, srv1Status: r, srv2Status: a, srv3Status: s, pdbStatus: l, sdbStatus: h, dbSync: d } = t, p = n?.isSelected && n?.isExpandedPos;
|
|
6773
6769
|
return n?.isSelected ? /* @__PURE__ */ c("div", { style: { pointerEvents: "none" }, children: [
|
|
6774
6770
|
/* @__PURE__ */ e(
|
|
6775
|
-
|
|
6771
|
+
N,
|
|
6776
6772
|
{
|
|
6777
6773
|
ex: 220,
|
|
6778
6774
|
ey: 260,
|
|
@@ -6787,7 +6783,7 @@ function Pi({ config: t }) {
|
|
|
6787
6783
|
}
|
|
6788
6784
|
),
|
|
6789
6785
|
/* @__PURE__ */ e(
|
|
6790
|
-
|
|
6786
|
+
N,
|
|
6791
6787
|
{
|
|
6792
6788
|
ex: 440,
|
|
6793
6789
|
ey: 260,
|
|
@@ -6802,7 +6798,7 @@ function Pi({ config: t }) {
|
|
|
6802
6798
|
}
|
|
6803
6799
|
),
|
|
6804
6800
|
/* @__PURE__ */ e(
|
|
6805
|
-
|
|
6801
|
+
N,
|
|
6806
6802
|
{
|
|
6807
6803
|
ex: 165,
|
|
6808
6804
|
ey: 390,
|
|
@@ -6817,7 +6813,7 @@ function Pi({ config: t }) {
|
|
|
6817
6813
|
}
|
|
6818
6814
|
),
|
|
6819
6815
|
/* @__PURE__ */ e(
|
|
6820
|
-
|
|
6816
|
+
N,
|
|
6821
6817
|
{
|
|
6822
6818
|
ex: 330,
|
|
6823
6819
|
ey: 390,
|
|
@@ -6832,7 +6828,7 @@ function Pi({ config: t }) {
|
|
|
6832
6828
|
}
|
|
6833
6829
|
),
|
|
6834
6830
|
/* @__PURE__ */ e(
|
|
6835
|
-
|
|
6831
|
+
N,
|
|
6836
6832
|
{
|
|
6837
6833
|
ex: 495,
|
|
6838
6834
|
ey: 390,
|
|
@@ -6847,7 +6843,7 @@ function Pi({ config: t }) {
|
|
|
6847
6843
|
}
|
|
6848
6844
|
),
|
|
6849
6845
|
/* @__PURE__ */ e(
|
|
6850
|
-
|
|
6846
|
+
N,
|
|
6851
6847
|
{
|
|
6852
6848
|
ex: 200,
|
|
6853
6849
|
ey: 520,
|
|
@@ -6862,7 +6858,7 @@ function Pi({ config: t }) {
|
|
|
6862
6858
|
}
|
|
6863
6859
|
),
|
|
6864
6860
|
/* @__PURE__ */ e(
|
|
6865
|
-
|
|
6861
|
+
N,
|
|
6866
6862
|
{
|
|
6867
6863
|
ex: 460,
|
|
6868
6864
|
ey: 520,
|
|
@@ -6877,7 +6873,7 @@ function Pi({ config: t }) {
|
|
|
6877
6873
|
}
|
|
6878
6874
|
),
|
|
6879
6875
|
!d && /* @__PURE__ */ e(
|
|
6880
|
-
|
|
6876
|
+
N,
|
|
6881
6877
|
{
|
|
6882
6878
|
ex: 330,
|
|
6883
6879
|
ey: 520,
|
|
@@ -6960,7 +6956,7 @@ function Ai({ config: t }) {
|
|
|
6960
6956
|
const n = q.useContext(Re), o = n?.rotateY ?? 20, i = n?.autoRotateComponents ?? !0, { dispStatus: r, srv1Status: a, srv2Status: s, srv3Status: l, pdbStatus: h, sdbStatus: d, dbSync: p } = t;
|
|
6961
6957
|
return /* @__PURE__ */ c(Me, { children: [
|
|
6962
6958
|
/* @__PURE__ */ e(
|
|
6963
|
-
|
|
6959
|
+
E,
|
|
6964
6960
|
{
|
|
6965
6961
|
ex: 330,
|
|
6966
6962
|
ey: 120,
|
|
@@ -6972,7 +6968,7 @@ function Ai({ config: t }) {
|
|
|
6972
6968
|
}
|
|
6973
6969
|
),
|
|
6974
6970
|
/* @__PURE__ */ e(
|
|
6975
|
-
|
|
6971
|
+
E,
|
|
6976
6972
|
{
|
|
6977
6973
|
ex: 330,
|
|
6978
6974
|
ey: 260,
|
|
@@ -7005,7 +7001,7 @@ function Ai({ config: t }) {
|
|
|
7005
7001
|
}
|
|
7006
7002
|
),
|
|
7007
7003
|
/* @__PURE__ */ e(
|
|
7008
|
-
|
|
7004
|
+
E,
|
|
7009
7005
|
{
|
|
7010
7006
|
ex: 165,
|
|
7011
7007
|
ey: 390,
|
|
@@ -7038,7 +7034,7 @@ function Ai({ config: t }) {
|
|
|
7038
7034
|
}
|
|
7039
7035
|
),
|
|
7040
7036
|
/* @__PURE__ */ e(
|
|
7041
|
-
|
|
7037
|
+
E,
|
|
7042
7038
|
{
|
|
7043
7039
|
ex: 330,
|
|
7044
7040
|
ey: 390,
|
|
@@ -7071,7 +7067,7 @@ function Ai({ config: t }) {
|
|
|
7071
7067
|
}
|
|
7072
7068
|
),
|
|
7073
7069
|
/* @__PURE__ */ e(
|
|
7074
|
-
|
|
7070
|
+
E,
|
|
7075
7071
|
{
|
|
7076
7072
|
ex: 495,
|
|
7077
7073
|
ey: 390,
|
|
@@ -7104,7 +7100,7 @@ function Ai({ config: t }) {
|
|
|
7104
7100
|
}
|
|
7105
7101
|
),
|
|
7106
7102
|
/* @__PURE__ */ e(
|
|
7107
|
-
|
|
7103
|
+
E,
|
|
7108
7104
|
{
|
|
7109
7105
|
ex: 200,
|
|
7110
7106
|
ey: 520,
|
|
@@ -7137,7 +7133,7 @@ function Ai({ config: t }) {
|
|
|
7137
7133
|
}
|
|
7138
7134
|
),
|
|
7139
7135
|
/* @__PURE__ */ e(
|
|
7140
|
-
|
|
7136
|
+
E,
|
|
7141
7137
|
{
|
|
7142
7138
|
ex: 460,
|
|
7143
7139
|
ey: 520,
|
|
@@ -7170,7 +7166,7 @@ function Ai({ config: t }) {
|
|
|
7170
7166
|
}
|
|
7171
7167
|
),
|
|
7172
7168
|
/* @__PURE__ */ e(
|
|
7173
|
-
|
|
7169
|
+
E,
|
|
7174
7170
|
{
|
|
7175
7171
|
ex: 330,
|
|
7176
7172
|
ey: 520,
|
|
@@ -7189,7 +7185,7 @@ function Ti({ config: t }) {
|
|
|
7189
7185
|
const n = q.useContext(Re), { dispStatus: o, srv1Status: i, srv2Status: r, srv3Status: a, pdbStatus: s, sdbStatus: l, dbSync: h } = t, d = n?.isSelected && n?.isExpandedPos;
|
|
7190
7186
|
return n?.isSelected ? /* @__PURE__ */ c("div", { style: { pointerEvents: "none" }, children: [
|
|
7191
7187
|
/* @__PURE__ */ e(
|
|
7192
|
-
|
|
7188
|
+
N,
|
|
7193
7189
|
{
|
|
7194
7190
|
ex: 330,
|
|
7195
7191
|
ey: 260,
|
|
@@ -7204,7 +7200,7 @@ function Ti({ config: t }) {
|
|
|
7204
7200
|
}
|
|
7205
7201
|
),
|
|
7206
7202
|
/* @__PURE__ */ e(
|
|
7207
|
-
|
|
7203
|
+
N,
|
|
7208
7204
|
{
|
|
7209
7205
|
ex: 165,
|
|
7210
7206
|
ey: 390,
|
|
@@ -7219,7 +7215,7 @@ function Ti({ config: t }) {
|
|
|
7219
7215
|
}
|
|
7220
7216
|
),
|
|
7221
7217
|
/* @__PURE__ */ e(
|
|
7222
|
-
|
|
7218
|
+
N,
|
|
7223
7219
|
{
|
|
7224
7220
|
ex: 330,
|
|
7225
7221
|
ey: 390,
|
|
@@ -7234,7 +7230,7 @@ function Ti({ config: t }) {
|
|
|
7234
7230
|
}
|
|
7235
7231
|
),
|
|
7236
7232
|
/* @__PURE__ */ e(
|
|
7237
|
-
|
|
7233
|
+
N,
|
|
7238
7234
|
{
|
|
7239
7235
|
ex: 495,
|
|
7240
7236
|
ey: 390,
|
|
@@ -7249,7 +7245,7 @@ function Ti({ config: t }) {
|
|
|
7249
7245
|
}
|
|
7250
7246
|
),
|
|
7251
7247
|
/* @__PURE__ */ e(
|
|
7252
|
-
|
|
7248
|
+
N,
|
|
7253
7249
|
{
|
|
7254
7250
|
ex: 200,
|
|
7255
7251
|
ey: 520,
|
|
@@ -7264,7 +7260,7 @@ function Ti({ config: t }) {
|
|
|
7264
7260
|
}
|
|
7265
7261
|
),
|
|
7266
7262
|
/* @__PURE__ */ e(
|
|
7267
|
-
|
|
7263
|
+
N,
|
|
7268
7264
|
{
|
|
7269
7265
|
ex: 460,
|
|
7270
7266
|
ey: 520,
|
|
@@ -7279,7 +7275,7 @@ function Ti({ config: t }) {
|
|
|
7279
7275
|
}
|
|
7280
7276
|
),
|
|
7281
7277
|
!h && /* @__PURE__ */ e(
|
|
7282
|
-
|
|
7278
|
+
N,
|
|
7283
7279
|
{
|
|
7284
7280
|
ex: 330,
|
|
7285
7281
|
ey: 520,
|
|
@@ -7333,21 +7329,21 @@ export {
|
|
|
7333
7329
|
Dt as MessageServer3D,
|
|
7334
7330
|
Hi as MessageServerNode,
|
|
7335
7331
|
Wt as NetworkBlock3D,
|
|
7336
|
-
|
|
7332
|
+
N as NodeCallout,
|
|
7337
7333
|
Qe as Platter3D,
|
|
7338
7334
|
Y as Port3D,
|
|
7339
7335
|
Xi as SAPService,
|
|
7340
7336
|
Ri as SAP_CONNECTIONS,
|
|
7341
|
-
|
|
7337
|
+
C as STATUS_CFG,
|
|
7342
7338
|
$e as Server3D,
|
|
7343
7339
|
Mi as ServerNode,
|
|
7344
7340
|
Lt as Service,
|
|
7345
7341
|
Re as ServiceContext,
|
|
7346
7342
|
Ut as ServiceDialog,
|
|
7347
|
-
|
|
7343
|
+
E as ServiceNode,
|
|
7348
7344
|
qt as SvgConnection,
|
|
7349
7345
|
It as SyncBridge,
|
|
7350
|
-
|
|
7346
|
+
W as ThreadPool3D,
|
|
7351
7347
|
mt as WebDispatcher3D,
|
|
7352
7348
|
Fi as WebDispatcherNode,
|
|
7353
7349
|
Qi as computeExchangeDialogAlerts,
|