[Bug] [Alert] Ignore alert not write info to db (#12867)

* add alert not match return info
This commit is contained in:
旺阳 2022-11-17 14:14:12 +08:00 committed by zhuangchong
parent 87c0a1141a
commit 6e520fe8f7
1 changed files with 4 additions and 1 deletions

View File

@ -233,10 +233,13 @@ public final class AlertSenderService extends Thread {
}
if (!sendWarning) {
String message = String.format(
"Alert Plugin %s send ignore warning type not match: plugin warning type is %s, alert data warning type is %s",
pluginInstanceName, warningType.getCode(), alertData.getWarnType());
logger.info(
"Alert Plugin {} send ignore warning type not match: plugin warning type is {}, alert data warning type is {}",
pluginInstanceName, warningType.getCode(), alertData.getWarnType());
return null;
return new AlertResult("false", message);
}
AlertInfo alertInfo = AlertInfo.builder()