|
|
@ -241,7 +241,7 @@ function confirm (opts) { |
|
|
|
*/ |
|
|
|
|
|
|
|
const alarmRes = await clickHouse.dataAlarm.query(` |
|
|
|
SELECT * FROM alarms WHERE AlarmId = '${alarmId}' |
|
|
|
SELECT * FROM alarms WHERE AlarmId IN (${alarmId.split(',').map(a => `'${a}'`).join(',')}) |
|
|
|
`).toPromise();
|
|
|
|
|
|
|
|
if (!alarmRes.length) { |
|
|
@ -252,6 +252,10 @@ function confirm (opts) { |
|
|
|
if ([3, 4].some(s => s == corAlarm.State)) { |
|
|
|
throw '告警信息已确认' |
|
|
|
} |
|
|
|
for (let corAlarm of alarmRes) { |
|
|
|
if ([3, 4].some(s => s == corAlarm.State)) { |
|
|
|
continue |
|
|
|
} |
|
|
|
const message = { |
|
|
|
messageMode: "AlarmManElimination", |
|
|
|
sourceId: corAlarm.SourceId, |
|
|
@ -268,7 +272,7 @@ function confirm (opts) { |
|
|
|
}]; |
|
|
|
|
|
|
|
await kfkSendAsync(payloads) |
|
|
|
|
|
|
|
} |
|
|
|
ctx.status = 204; |
|
|
|
} catch (error) { |
|
|
|
ctx.fs.logger.error(`path: ${ctx.path}, error: ${error}`); |
|
|
|