实现区域阈值告警任务

This commit is contained in:
2025-11-10 15:25:33 +08:00
parent 19d55eb09b
commit d4e8aba1fd
5 changed files with 190 additions and 20 deletions

View File

@@ -11,6 +11,13 @@ import (
"gorm.io/gorm"
)
const (
// PlanNamePeriodicSystemHealthCheck 是周期性系统健康检查计划的名称
PlanNamePeriodicSystemHealthCheck = "周期性系统健康检查"
// PlanNameAlarmNotification 是告警通知发送计划的名称
PlanNameAlarmNotification = "告警通知发送"
)
// PlanExecutionType 定义了计划的执行类型
type PlanExecutionType string