This commit is contained in:
Henry Dollman
2024-07-11 00:38:30 -04:00
parent fa9e257864
commit 82888684d9
10 changed files with 742 additions and 437 deletions

7
site/src/types.d.ts vendored
View File

@@ -20,7 +20,7 @@ export interface SystemStats {
export interface ContainerStatsRecord extends RecordModel {
system: string
stats: ContainerStats
stats: ContainerStats[]
}
interface ContainerStats {
@@ -29,3 +29,8 @@ interface ContainerStats {
mem: number
mempct: number
}
export interface SystemStatsRecord extends RecordModel {
system: string
stats: SystemStats
}