ソースを参照

设备维保 推送数据 修改为批量推送

miaolijing 3 年 前
コミット
da63c537c9

+ 5 - 3
src/main/java/com/persagy/apm/diagnose/maintenance/service/impl/ProjectDataRecordServiceImpl.java

@@ -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);