|
|
@ -16,13 +16,13 @@ INSERT INTO t_alarm_group_unit("id","name", "group_id") VALUES (49,'数据毛刺 |
|
|
|
IF NOT EXISTS(SELECT 1 FROM t_alarm_type WHERE name='识别到数据异常中断,产生告警,并已将告警信息推送至运维服务工程师。' AND code='3020' ) |
|
|
|
THEN |
|
|
|
INSERT INTO t_alarm_type (code, name,description,category,enabled,alarm_group,alarm_group_unit,advice_problem) VALUES ('3020','识别到数据异常中断,产生告警,并已将告警信息推送至运维服务工程师。','数据中断',1,true, |
|
|
|
1,(select id from "t_alarm_group_unit" where name='数据中断' LIMIT 1),'非软件处理'); |
|
|
|
3,(select id from "t_alarm_group_unit" where name='数据中断' LIMIT 1),'非软件处理'); |
|
|
|
END IF; |
|
|
|
|
|
|
|
IF NOT EXISTS(SELECT 1 FROM t_alarm_code WHERE name='数据中断' AND type_code='30200001' ) |
|
|
|
THEN |
|
|
|
INSERT INTO t_alarm_code (code, name,type_code,level,enable,alarm_group,alarm_group_unit,advice_problem) VALUES ('30200001','数据中断','3020',1,true, |
|
|
|
1,(select id from "t_alarm_group_unit" where name='数据中断' LIMIT 1),'非软件处理'); |
|
|
|
3,(select id from "t_alarm_group_unit" where name='数据中断' LIMIT 1),'非软件处理'); |
|
|
|
END IF; |
|
|
|
|
|
|
|
-- 添加[数据异常趋势]告警类型 |
|
|
@ -36,7 +36,7 @@ INSERT INTO t_alarm_group_unit("id","name", "group_id") VALUES (49,'数据毛刺 |
|
|
|
IF NOT EXISTS(SELECT 1 FROM t_alarm_code WHERE name='数据异常趋势' AND type_code='3021' ) |
|
|
|
THEN |
|
|
|
INSERT INTO t_alarm_code (code, name,type_code,level,enable,alarm_group,alarm_group_unit,advice_problem) VALUES ('30210001','数据异常趋势','3021',1,true, |
|
|
|
1,(select id from "t_alarm_group_unit" where name='数据异常趋势' LIMIT 1),'非软件处理'); |
|
|
|
3,(select id from "t_alarm_group_unit" where name='数据异常趋势' LIMIT 1),'非软件处理'); |
|
|
|
END IF; |
|
|
|
|
|
|
|
|
|
|
@ -51,7 +51,7 @@ INSERT INTO t_alarm_group_unit("id","name", "group_id") VALUES (49,'数据毛刺 |
|
|
|
IF NOT EXISTS(SELECT 1 FROM t_alarm_code WHERE name='数据毛刺' AND type_code='3022' ) |
|
|
|
THEN |
|
|
|
INSERT INTO t_alarm_code (code, name,type_code,level,enable,alarm_group,alarm_group_unit,advice_problem) VALUES ('30220001','数据毛刺','3022',1,true, |
|
|
|
1,(select id from "t_alarm_group_unit" where name='数据毛刺' LIMIT 1),'非软件处理'); |
|
|
|
3,(select id from "t_alarm_group_unit" where name='数据毛刺' LIMIT 1),'非软件处理'); |
|
|
|
END IF; |
|
|
|
|
|
|
|
END |
|
|
|