648540858
2022-10-20 3ffe2050827482ba83a1c15afbf346275be86187
src/main/java/com/genersoft/iot/vmp/conf/SystemInfoTimerTask.java
@@ -22,14 +22,14 @@
    @Autowired
    private IRedisCatchStorage redisCatchStorage;
    @Scheduled(fixedRate = 1000)   //每1秒执行一次
    @Scheduled(fixedRate = 2000)   //每1秒执行一次
    public void execute(){
        try {
            double cpuInfo = SystemInfoUtils.getCpuInfo();
            redisCatchStorage.addCpuInfo(cpuInfo);
            double memInfo = SystemInfoUtils.getMemInfo();
            redisCatchStorage.addMemInfo(memInfo);
            Map<String, String> networkInterfaces = SystemInfoUtils.getNetworkInterfaces();
            Map<String, Double> networkInterfaces = SystemInfoUtils.getNetworkInterfaces();
            redisCatchStorage.addNetInfo(networkInterfaces);
        } catch (InterruptedException e) {
            logger.error("[获取系统信息失败] {}", e.getMessage());