Files
metabuilder/packages/ui_level6/seed/scripts/system/system_health.lua
T
2025-12-30 12:24:30 +00:00

22 lines
509 B
Lua

-- System health monitoring component
-- Single function module for supergod administration
---@class SystemHealth
local M = {}
---Render system health dashboard
---@return SystemHealthComponent
function M.system_health()
return {
type = "system_health",
services = {
{ id = "database", label = "Database" },
{ id = "cache", label = "Cache" },
{ id = "queue", label = "Job Queue" },
{ id = "storage", label = "Object Storage" }
}
}
end
return M