- 新增OpsAdvancedSettings数据模型 - 支持数据保留策略配置(错误日志、分钟级指标、小时级指标) - 支持数据聚合开关配置 - 添加GET/PUT /admin/ops/advanced-settings接口 - 添加配置校验和默认值处理 相关文件: - backend/internal/service/ops_settings_models.go - backend/internal/service/ops_settings.go - backend/internal/handler/admin/ops_settings_handler.go - backend/internal/server/routes/admin.go - backend/internal/service/domain_constants.go
89 lines
3.3 KiB
Go
89 lines
3.3 KiB
Go
package service
|
|
|
|
// Ops settings models stored in DB `settings` table (JSON blobs).
|
|
|
|
type OpsEmailNotificationConfig struct {
|
|
Alert OpsEmailAlertConfig `json:"alert"`
|
|
Report OpsEmailReportConfig `json:"report"`
|
|
}
|
|
|
|
type OpsEmailAlertConfig struct {
|
|
Enabled bool `json:"enabled"`
|
|
Recipients []string `json:"recipients"`
|
|
MinSeverity string `json:"min_severity"`
|
|
RateLimitPerHour int `json:"rate_limit_per_hour"`
|
|
BatchingWindowSeconds int `json:"batching_window_seconds"`
|
|
IncludeResolvedAlerts bool `json:"include_resolved_alerts"`
|
|
}
|
|
|
|
type OpsEmailReportConfig struct {
|
|
Enabled bool `json:"enabled"`
|
|
Recipients []string `json:"recipients"`
|
|
DailySummaryEnabled bool `json:"daily_summary_enabled"`
|
|
DailySummarySchedule string `json:"daily_summary_schedule"`
|
|
WeeklySummaryEnabled bool `json:"weekly_summary_enabled"`
|
|
WeeklySummarySchedule string `json:"weekly_summary_schedule"`
|
|
ErrorDigestEnabled bool `json:"error_digest_enabled"`
|
|
ErrorDigestSchedule string `json:"error_digest_schedule"`
|
|
ErrorDigestMinCount int `json:"error_digest_min_count"`
|
|
AccountHealthEnabled bool `json:"account_health_enabled"`
|
|
AccountHealthSchedule string `json:"account_health_schedule"`
|
|
AccountHealthErrorRateThreshold float64 `json:"account_health_error_rate_threshold"`
|
|
}
|
|
|
|
// OpsEmailNotificationConfigUpdateRequest allows partial updates, while the
|
|
// frontend can still send the full config shape.
|
|
type OpsEmailNotificationConfigUpdateRequest struct {
|
|
Alert *OpsEmailAlertConfig `json:"alert"`
|
|
Report *OpsEmailReportConfig `json:"report"`
|
|
}
|
|
|
|
type OpsDistributedLockSettings struct {
|
|
Enabled bool `json:"enabled"`
|
|
Key string `json:"key"`
|
|
TTLSeconds int `json:"ttl_seconds"`
|
|
}
|
|
|
|
type OpsAlertSilenceEntry struct {
|
|
RuleID *int64 `json:"rule_id,omitempty"`
|
|
Severities []string `json:"severities,omitempty"`
|
|
|
|
UntilRFC3339 string `json:"until_rfc3339"`
|
|
Reason string `json:"reason"`
|
|
}
|
|
|
|
type OpsAlertSilencingSettings struct {
|
|
Enabled bool `json:"enabled"`
|
|
|
|
GlobalUntilRFC3339 string `json:"global_until_rfc3339"`
|
|
GlobalReason string `json:"global_reason"`
|
|
|
|
Entries []OpsAlertSilenceEntry `json:"entries,omitempty"`
|
|
}
|
|
|
|
type OpsAlertRuntimeSettings struct {
|
|
EvaluationIntervalSeconds int `json:"evaluation_interval_seconds"`
|
|
|
|
DistributedLock OpsDistributedLockSettings `json:"distributed_lock"`
|
|
Silencing OpsAlertSilencingSettings `json:"silencing"`
|
|
}
|
|
|
|
// OpsAdvancedSettings stores advanced ops configuration (data retention, aggregation).
|
|
type OpsAdvancedSettings struct {
|
|
DataRetention OpsDataRetentionSettings `json:"data_retention"`
|
|
Aggregation OpsAggregationSettings `json:"aggregation"`
|
|
}
|
|
|
|
type OpsDataRetentionSettings struct {
|
|
CleanupEnabled bool `json:"cleanup_enabled"`
|
|
CleanupSchedule string `json:"cleanup_schedule"`
|
|
ErrorLogRetentionDays int `json:"error_log_retention_days"`
|
|
MinuteMetricsRetentionDays int `json:"minute_metrics_retention_days"`
|
|
HourlyMetricsRetentionDays int `json:"hourly_metrics_retention_days"`
|
|
}
|
|
|
|
type OpsAggregationSettings struct {
|
|
AggregationEnabled bool `json:"aggregation_enabled"`
|
|
}
|
|
|