关于页运行状态、代理关联租户与步进框修复
CI / test (push) Successful in 25s
Release / release (push) Successful in 25s

This commit is contained in:
2026-07-13 12:21:28 +08:00
parent 2ea5b73de2
commit aea00c2382
9 changed files with 331 additions and 13 deletions
+19 -1
View File
@@ -1015,10 +1015,28 @@ export interface AiContentLog {
}
// ---- 关于 ----
/** GET /about:构建与运行环境信息 */
/** 进程资源占用快照,指标为自启动累计口径 */
export interface AboutResources {
/** CPU 自启动均值,占单核百分比(多核并行可超 100) */
cpuAvgPercent: number
numCpu: number
goroutines: number
/** Go 堆在用字节数 */
memHeapBytes: number
/** 向系统申请的总字节数 */
memSysBytes: number
dbEngine: string
/** 数据库磁盘占用;-1 表示外部数据库不可度量 */
dbBytes: number
}
/** GET /about:构建与运行环境信息;运行时字段旧版后端可能缺失 */
export interface AboutInfo {
version: string
buildTime: string
goVersion: string
platform: string
startedAt?: string
uptimeSeconds?: number
resources?: AboutResources
}