|
@@ -298,16 +298,18 @@ public class ProjectDataRecordServiceImpl implements IProjectDataRecordService {
|
|
|
}
|
|
|
timeKeyAndRecordList.get(timeKey).add(record);
|
|
|
}
|
|
|
+ Map<String, List<MonitorIndicatorRecord>> sendTimeKeyAndDataList = new LinkedHashMap<>();
|
|
|
for (Map.Entry<String, List<MonitorIndicatorRecord>> dateListEntry : timeKeyAndRecordList.entrySet()) {
|
|
|
List<MonitorIndicatorRecord> value = dateListEntry.getValue();
|
|
|
if (CollectionUtils.isEmpty(value) || value.size() != infCodeList.size()) {
|
|
|
continue;
|
|
|
}
|
|
|
- String sentValue = CollectDataUtil.buildSendParam(value,alarmItemCode);
|
|
|
- AlarmWebSocketServer.sendMsgToClients(projectId, CollectDataUtil.buildSendParam(value,alarmItemCode));
|
|
|
- log.info("设备维保发送数据服务数据:" + projectId+";"+ sentValue);
|
|
|
+ sendTimeKeyAndDataList.put(dateListEntry.getKey(),value);
|
|
|
endTime = com.persagy.apm.diagnose.utils.DateUtils.str2Date(dateListEntry.getKey(), com.persagy.apm.diagnose.utils.DateUtils.SDF_SECOND);
|
|
|
}
|
|
|
+ String sentValue = CollectDataUtil.batchBuildSendParam(sendTimeKeyAndDataList,alarmItemCode);
|
|
|
+ AlarmWebSocketServer.sendMsgToClients(projectId, sentValue);
|
|
|
+ log.info("设备维保发送数据服务数据:" + projectId+";"+ sentValue);
|
|
|
configItemSendTimeDTO.setLastSendTime(endTime);
|
|
|
configItemSendTimeDTO.setUpdateTime(new Date());
|
|
|
updateRedisConfigItemSendTimeDTO(projectId, objIdAndAlarmItemCode, configItemSendTimeDTO);
|