Type Alias: MonitorStatus
type MonitorStatus = LiteralUnion<
| "degraded"
| "down"
| "paused"
| "pending"
| "up",
string
>;
Defined in: shared/types/configTypes.ts:158
Monitor status information with support for specific status values.