feat(设置): 集成运维监控配置到系统设置

- 扩展 setting_handler 支持 ops 配置管理
- 扩展 setting_service 支持 ops 配置持久化
- 更新 settings_view 包含 ops 配置视图
This commit is contained in:
IanShaw027
2026-01-09 20:57:32 +08:00
parent fcdf839b6b
commit 2d123a11ad
3 changed files with 68 additions and 0 deletions

View File

@@ -38,6 +38,11 @@ type SystemSettings struct {
// Identity patch configuration (Claude -> Gemini)
EnableIdentityPatch bool `json:"enable_identity_patch"`
IdentityPatchPrompt string `json:"identity_patch_prompt"`
// Ops monitoring (vNext)
OpsMonitoringEnabled bool
OpsRealtimeMonitoringEnabled bool
OpsQueryModeDefault string
}
type PublicSettings struct {