| | |
| | | } |
| | | Date predictTime = DateUtils.parse(messageJson.get("predictTime").toString(), DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND); |
| | | |
| | | |
| | | // 查询相关预警配置 |
| | | List<AlarmConfigRespDTO> configList = mcsApi.listAlarmConfig(new HashMap<String, Object>()); |
| | | if (CollectionUtils.isEmpty(configList)) { |
| | |
| | | alarmMessage.setConfigId(configItem.getId()); |
| | | alarmMessage.setTitle(configItem.getTitle()); |
| | | alarmMessage.setAlarmObj(configItem.getAlarmObj()); |
| | | alarmMessage.setAlarmTime(predictTime); |
| | | log.info("对比累计值是否超限"); |
| | | StringBuilder content = new StringBuilder(); |
| | | if (configItem.getCulUpper() != null && culValue.compareTo(configItem.getCulUpper()) > 0) { |
| | |
| | | } |
| | | if (!CollectionUtils.isEmpty(alarmList)) { |
| | | log.info("发送预警消息"); |
| | | Map<String, Object> msg = new HashMap<>(2); |
| | | msg.put("predictTime", predictTime); |
| | | msg.put("alarmList", alarmList); |
| | | rabbitTemplate.convertAndSend(RoutingConstant.EXCHANGE, RoutingConstant.Iailab_Model_Alarm, alarmList); |
| | | } |
| | | } catch (Exception e) { |