|
@@ -2,12 +2,13 @@ package com.persagy.apm.diagnose.service;
|
|
|
|
|
|
import com.alibaba.fastjson.JSONArray;
|
|
|
import com.alibaba.fastjson.JSONObject;
|
|
|
+import com.persagy.apm.common.model.vo.SimpleObjVO;
|
|
|
import com.persagy.apm.diagnose.feign.AlarmResult;
|
|
|
import com.persagy.apm.diagnose.feign.client.AlarmServiceClient;
|
|
|
import com.persagy.apm.diagnose.indicatorrecord.service.impl.MonitorIndicatorRecordServiceImpl;
|
|
|
-import com.persagy.apm.diagnose.maintenance.constant.EnumAlarmItem;
|
|
|
import com.persagy.apm.diagnose.maintenance.model.dto.AlarmCondition;
|
|
|
import com.persagy.apm.diagnose.service.dto.*;
|
|
|
+import com.persagy.apm.diagnose.service.vo.MonitorIndicatorConfigVO;
|
|
|
import com.persagy.apm.diagnose.utils.AlarmResultUtil;
|
|
|
import com.persagy.apm.diagnose.utils.RedisUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -128,24 +129,18 @@ public class EnergyAlarmServiceImpl {
|
|
|
public String queryObjIndicatorMethodId(String projectId,String objId, String indicatorId) throws Exception {
|
|
|
MonitorIndicatorConfigByEquipDTO build = MonitorIndicatorConfigByEquipDTO.builder().projectId(projectId).objId(objId).monitorIndicatorId(Arrays.asList(indicatorId)).groupCode(systemCode).userId("test").pd("wwwwwwwwww").build();
|
|
|
AlarmResult<JSONObject> result = alarmServiceClient.query_by_equip(build);
|
|
|
- JSONObject content = result.getContent();
|
|
|
- if (content == null) {
|
|
|
- return null;
|
|
|
- }
|
|
|
- JSONArray records = content.getJSONArray("records");
|
|
|
- if (records == null) {
|
|
|
- return null;
|
|
|
- }
|
|
|
- if(CollectionUtils.isEmpty(records)){
|
|
|
+
|
|
|
+ List<MonitorIndicatorConfigVO> records = AlarmResultUtil.getRecords(result, MonitorIndicatorConfigVO.class);
|
|
|
+ if (CollectionUtils.isEmpty(records)) {
|
|
|
return null;
|
|
|
}
|
|
|
- JSONObject recordObj = (JSONObject)records.get(0);
|
|
|
+ MonitorIndicatorConfigVO recordObj = records.get(0);
|
|
|
|
|
|
- JSONObject calculateMethod = recordObj.getJSONObject("calculateMethod");
|
|
|
+ SimpleObjVO calculateMethod = recordObj.getCalculateMethod();
|
|
|
if (calculateMethod == null) {
|
|
|
return null;
|
|
|
}
|
|
|
- return calculateMethod.getString("id");
|
|
|
+ return calculateMethod.getId();
|
|
|
}
|
|
|
|
|
|
|