|
@@ -4,16 +4,21 @@ import com.persagy.apm.common.response.ApmResponseUpsertVO;
|
|
|
import com.persagy.apm.common.response.CommonResult;
|
|
|
import com.persagy.apm.common.response.PageList;
|
|
|
import com.persagy.apm.common.utils.ResultHelper;
|
|
|
+import com.persagy.apm.diagnose.indicatorcompute.model.ProjectIndicatorCompute;
|
|
|
+import com.persagy.apm.diagnose.indicatorcompute.service.IProjectIndicatorComputeService;
|
|
|
import com.persagy.apm.diagnose.indicatorrecord.model.ConvertMonitorIndicatorRecordTool;
|
|
|
import com.persagy.apm.diagnose.indicatorrecord.model.dto.*;
|
|
|
import com.persagy.apm.diagnose.indicatorrecord.model.vo.MonitorIndicatorRecordItemVO;
|
|
|
import com.persagy.apm.diagnose.indicatorrecord.model.vo.MonitorIndicatorRecordListItemVO;
|
|
|
import com.persagy.apm.diagnose.indicatorrecord.service.IMonitorIndicatorRecordService;
|
|
|
import com.persagy.apm.diagnose.service.EnergyAlarmServiceImpl;
|
|
|
+import com.persagy.apm.diagnose.service.SaasWebServiceImpl;
|
|
|
+import com.persagy.apm.diagnose.service.dto.ProjectDTO;
|
|
|
import com.persagy.framework.ems.data.pojo.hbase.MonitorIndicatorRecord;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.util.CollectionUtils;
|
|
|
import org.springframework.validation.annotation.Validated;
|
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
@@ -22,6 +27,7 @@ import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.validation.Valid;
|
|
|
import java.util.List;
|
|
|
+import java.util.Map;
|
|
|
|
|
|
/**
|
|
|
* 监测指标历史记录控制层
|
|
@@ -35,8 +41,25 @@ import java.util.List;
|
|
|
public class MonitorIndicatorRecordController {
|
|
|
@Autowired
|
|
|
private IMonitorIndicatorRecordService monitorIndicatorRecordService;
|
|
|
-
|
|
|
-
|
|
|
+ @Autowired
|
|
|
+ private SaasWebServiceImpl saasWebServiceImpl;
|
|
|
+ @Autowired
|
|
|
+ private IProjectIndicatorComputeService projectIndicatorComputeService;
|
|
|
+ @PostMapping("/sendData")
|
|
|
+ public void sendData() throws Exception {
|
|
|
+ //查询项目列表
|
|
|
+ List<ProjectDTO> projectDTOList = saasWebServiceImpl.queryProjectDTOList(null);
|
|
|
+ if (CollectionUtils.isEmpty(projectDTOList)) {
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ Map<String, ProjectIndicatorCompute> projectIdAndProjectCompute = projectIndicatorComputeService.getProjectIdAndProjectCompute();
|
|
|
+ for (ProjectDTO projectDTO : projectDTOList) {
|
|
|
+// if(!projectDTO.getProjectId().equals("Pj1101060001")){
|
|
|
+// continue;
|
|
|
+// }
|
|
|
+ monitorIndicatorRecordService.computeIndicatorData(projectDTO, projectIdAndProjectCompute.get(projectDTO.getProjectId()), null);
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
@ApiOperation(value = "监测指标历史记录列表")
|
|
|
@PostMapping("/query")
|