| | |
| | | import com.iailab.framework.common.util.object.BeanUtils; |
| | | import com.iailab.framework.common.util.object.ConvertUtils; |
| | | import com.iailab.framework.excel.core.util.ExcelUtils; |
| | | import com.iailab.module.data.channel.http.collector.ihdb.HttpCollectorForIhd; |
| | | import com.iailab.module.data.channel.http.entity.HttpTagEntity; |
| | | import com.iailab.module.data.channel.http.service.HttpTagService; |
| | | import com.iailab.module.data.channel.http.vo.HttpTagPageReqVO; |
| | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | import javax.validation.Valid; |
| | | import java.io.IOException; |
| | | import java.util.Collections; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import java.util.UUID; |
| | | |
| | | import java.util.*; |
| | | import java.util.stream.Collectors; |
| | | import static com.iailab.framework.apilog.core.enums.OperateTypeEnum.EXPORT; |
| | | import static com.iailab.framework.common.pojo.CommonResult.success; |
| | | |
| | |
| | | @Resource |
| | | private HttpTagService tagService; |
| | | |
| | | @Resource |
| | | private HttpCollectorForIhd httpCollectorForIhd; |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-http:query')") |
| | | @GetMapping("page") |
| | | public CommonResult<PageResult<HttpTagRespVO>> page(@Valid HttpTagPageReqVO reqVO) { |
| | | |
| | | PageResult<HttpTagEntity> page = tagService.queryPage(reqVO); |
| | | return success(BeanUtils.toBean(page, HttpTagRespVO.class)); |
| | | PageResult<HttpTagRespVO> pageResultVO = new PageResult<>(); |
| | | List<String> tagNames = page.getList().stream() |
| | | .map(HttpTagEntity::getTagName) |
| | | .collect(Collectors.toList()); |
| | | Map<String, Object> dataMap = httpCollectorForIhd.getLastValues(tagNames); |
| | | |
| | | List<HttpTagRespVO> vos = page.getList().stream().map(entity -> { |
| | | |
| | | HttpTagRespVO vo = BeanUtils.toBean(entity,HttpTagRespVO.class); |
| | | vo.setDataValue(Double.parseDouble(dataMap.get(entity.getTagName()).toString())); |
| | | return vo; |
| | | }).collect(Collectors.toList()); |
| | | |
| | | pageResultVO.setList(vos); |
| | | |
| | | return success(pageResultVO); |
| | | } |
| | | |
| | | @PreAuthorize("@ss.hasPermission('data:channel-http:query')") |