mirror of
https://github.com/henrygd/beszel.git
synced 2026-03-21 21:26:16 +01:00
- Add new /containers route with virtualized table showing all containers across systems - Implement container stats collection (CPU, memory, network usage) with health status tracking - Add container logs and info API endpoints with syntax highlighting using Shiki - Create detailed container views with fullscreen logs/info dialogs and refresh functionality - Add container table to individual system pages with lazy loading - Implement container record storage with automatic cleanup and historical averaging - Update navbar with container navigation icon - Extract reusable ActiveAlerts component from home page - Add FooterRepoLink component for consistent GitHub/version display - Enhance filtering and search capabilities across container tables
74 lines
1013 B
TypeScript
74 lines
1013 B
TypeScript
/** Operating system */
|
|
export enum Os {
|
|
Linux = 0,
|
|
Darwin,
|
|
Windows,
|
|
FreeBSD,
|
|
}
|
|
|
|
/** Type of chart */
|
|
export enum ChartType {
|
|
Memory,
|
|
Disk,
|
|
Network,
|
|
CPU,
|
|
}
|
|
|
|
/** Unit of measurement */
|
|
export enum Unit {
|
|
Bytes,
|
|
Bits,
|
|
Celsius,
|
|
Fahrenheit,
|
|
}
|
|
|
|
/** Meter state for color */
|
|
export enum MeterState {
|
|
Good,
|
|
Warn,
|
|
Crit,
|
|
}
|
|
|
|
/** System status states */
|
|
export enum SystemStatus {
|
|
Up = "up",
|
|
Down = "down",
|
|
Pending = "pending",
|
|
Paused = "paused",
|
|
}
|
|
|
|
/** Battery state */
|
|
export enum BatteryState {
|
|
Unknown,
|
|
Empty,
|
|
Full,
|
|
Charging,
|
|
Discharging,
|
|
Idle,
|
|
}
|
|
|
|
/** Time format */
|
|
export enum HourFormat {
|
|
// Default = "Default",
|
|
"12h" = "12h",
|
|
"24h" = "24h",
|
|
}
|
|
|
|
/** Container health status */
|
|
export enum ContainerHealth {
|
|
None,
|
|
Starting,
|
|
Healthy,
|
|
Unhealthy,
|
|
}
|
|
|
|
export const ContainerHealthLabels = ["None", "Starting", "Healthy", "Unhealthy"] as const
|
|
|
|
/** Connection type */
|
|
export enum ConnectionType {
|
|
SSH = 1,
|
|
WebSocket,
|
|
}
|
|
|
|
export const connectionTypeLabels = ["", "SSH", "WebSocket"] as const
|