This commit is contained in:
RGJorge
2026-05-08 05:51:14 +00:00
parent e350b834b8
commit 1ae4b45007
15 changed files with 1590 additions and 198 deletions
+9
View File
@@ -76,6 +76,15 @@ export interface ContainerSettings {
memThreshold: number | null;
}
export interface StatsHistoryPoint {
timestamp: number;
cpu: number;
mem_mb: number;
mem_percent: number;
}
export type StatsRange = "1h" | "6h" | "24h" | "7d";
export type WSMessage =
| { type: "services"; data: Service[] }
| { type: "connections"; data: Connection[] }