优化异常数据和稳态告警接口信息

This commit is contained in:
wr
2025-12-25 15:32:21 +08:00
parent 917e3fb2d5
commit 778f689b3e
8 changed files with 120 additions and 154 deletions

View File

@@ -17,7 +17,7 @@ public class DetailAbnormalVO {
private String date;
private List<String> dateList;
private List<TimeAndTargetKey> dateTargetList;
private String monitorName;
@@ -29,7 +29,13 @@ public class DetailAbnormalVO {
private String targetKey;
@Data
public static class TimeAndTargetKey {
private String date;
private List<VerifyTargetVO> targetKeys;
}
/**
* 异常实体
*/
@@ -68,6 +74,14 @@ public class DetailAbnormalVO {
private List<DetailAbnormalInnerVO> time;
}
@Data
public static class DetailLimitCountVO {
private Integer timeSum;
private Integer errCount;
private List<DetailLimitInnerVO> time;
}
@Data
public static class DetailLimitInnerVO{