mirror of
https://github.com/henrygd/beszel.git
synced 2025-12-16 18:26:16 +01:00
31 lines
329 B
TypeScript
31 lines
329 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,
|
|
}
|