| | |
| | | import org.springframework.scheduling.annotation.Scheduled; |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | /** |
| | |
| | | redisCatchStorage.addMemInfo(memInfo); |
| | | Map<String, Double> networkInterfaces = SystemInfoUtils.getNetworkInterfaces(); |
| | | redisCatchStorage.addNetInfo(networkInterfaces); |
| | | List<Map<String, Object>> diskInfo =SystemInfoUtils.getDiskInfo(); |
| | | redisCatchStorage.addDiskInfo(diskInfo); |
| | | } catch (InterruptedException e) { |
| | | logger.error("[获取系统信息失败] {}", e.getMessage()); |
| | | } |