mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-27 15:24:56 +00:00
22 lines
531 B
Lua
22 lines
531 B
Lua
-- System statistics dashboard component
|
|
-- Single function module for supergod administration
|
|
|
|
---@class SystemStats
|
|
local M = {}
|
|
|
|
---Render system statistics dashboard
|
|
---@return SystemStatsComponent
|
|
function M.system_stats()
|
|
return {
|
|
type = "system_stats",
|
|
metrics = {
|
|
{ id = "tenants", label = "Total Tenants" },
|
|
{ id = "users", label = "Total Users" },
|
|
{ id = "storage", label = "Storage Used" },
|
|
{ id = "requests", label = "API Requests (24h)" }
|
|
}
|
|
}
|
|
end
|
|
|
|
return M
|