|
|
@@ -306,11 +306,11 @@ public class DashboardServiceImpl implements DashboardService {
|
|
|
|
|
|
Map<String, Long> contentMap = thresholdAlarms.stream()
|
|
|
.collect(Collectors.toMap(SystemCategoryVO::getSystemId,
|
|
|
- SystemCategoryVO::getContentCount,
|
|
|
+ SystemCategoryVO::getThresholdCount,
|
|
|
(v1, v2) -> v1));
|
|
|
Map<String, Long> thresholdMap = contentAlarms.stream()
|
|
|
.collect(Collectors.toMap(SystemCategoryVO::getSystemId,
|
|
|
- SystemCategoryVO::getThresholdCount,
|
|
|
+ SystemCategoryVO::getContentCount,
|
|
|
(v1, v2) -> v1));
|
|
|
|
|
|
// 4. 获取所有系统配置的指标(用于存在性计算)
|