国产成人精品18p,天天干成人网,无码专区狠狠躁天天躁,美女脱精光隐私扒开免费观看

Java服務(wù)器主機信息監控工具類(lèi)的示例代碼

發(fā)布時(shí)間:2021-07-17 21:51 來(lái)源:腳本之家 閱讀:0 作者:興趣使然的草帽路飛 欄目: 編程語(yǔ)言 歡迎投稿:712375056

對接前端后效果展示如圖:


1、CPU相關(guān)信息實(shí)體類(lèi)

/**
 * CPU相關(guān)信息
 * 
 * @author csp
 */
public class Cpu
{
    /**
     * 核心數
     */
    private int cpuNum;

    /**
     * CPU總的使用率
     */
    private double total;

    /**
     * CPU系統使用率
     */
    private double sys;

    /**
     * CPU用戶(hù)使用率
     */
    private double used;

    /**
     * CPU當前等待率
     */
    private double wait;

    /**
     * CPU當前空閑率
     */
    private double free;

    public int getCpuNum()
    {
        return cpuNum;
    }

    public void setCpuNum(int cpuNum)
    {
        this.cpuNum = cpuNum;
    }

    public double getTotal()
    {
        return Arith.round(Arith.mul(total, 100), 2);
    }

    public void setTotal(double total)
    {
        this.total = total;
    }

    public double getSys()
    {
        return Arith.round(Arith.mul(sys / total, 100), 2);
    }

    public void setSys(double sys)
    {
        this.sys = sys;
    }

    public double getUsed()
    {
        return Arith.round(Arith.mul(used / total, 100), 2);
    }

    public void setUsed(double used)
    {
        this.used = used;
    }

    public double getWait()
    {
        return Arith.round(Arith.mul(wait / total, 100), 2);
    }

    public void setWait(double wait)
    {
        this.wait = wait;
    }

    public double getFree()
    {
        return Arith.round(Arith.mul(free / total, 100), 2);
    }

    public void setFree(double free)
    {
        this.free = free;
    }
}

2、內存相關(guān)信息實(shí)體類(lèi)

/**
 * 內存相關(guān)信息
 * 
 * @author csp
 */
public class Mem
{
    /**
     * 內存總量
     */
    private double total;

    /**
     * 已用內存
     */
    private double used;

    /**
     * 剩余內存
     */
    private double free;

    public double getTotal()
    {
        return Arith.div(total, (1024 * 1024 * 1024), 2);
    }

    public void setTotal(long total)
    {
        this.total = total;
    }

    public double getUsed()
    {
        return Arith.div(used, (1024 * 1024 * 1024), 2);
    }

    public void setUsed(long used)
    {
        this.used = used;
    }

    public double getFree()
    {
        return Arith.div(free, (1024 * 1024 * 1024), 2);
    }

    public void setFree(long free)
    {
        this.free = free;
    }

    public double getUsage()
    {
        return Arith.mul(Arith.div(used, total, 4), 100);
    }
}

3、JVM相關(guān)信息實(shí)體類(lèi)

/**
 * JVM相關(guān)信息
 * 
 * @author csp
 */
public class Jvm
{
    /**
     * 當前JVM占用的內存總數(M)
     */
    private double total;

    /**
     * JVM最大可用內存總數(M)
     */
    private double max;

    /**
     * JVM空閑內存(M)
     */
    private double free;

    /**
     * JDK版本
     */
    private String version;

    /**
     * JDK路徑
     */
    private String home;

    public double getTotal()
    {
        return Arith.div(total, (1024 * 1024), 2);
    }

    public void setTotal(double total)
    {
        this.total = total;
    }

    public double getMax()
    {
        return Arith.div(max, (1024 * 1024), 2);
    }

    public void setMax(double max)
    {
        this.max = max;
    }

    public double getFree()
    {
        return Arith.div(free, (1024 * 1024), 2);
    }

    public void setFree(double free)
    {
        this.free = free;
    }

    public double getUsed()
    {
        return Arith.div(total - free, (1024 * 1024), 2);
    }

    public double getUsage()
    {
        return Arith.mul(Arith.div(total - free, total, 4), 100);
    }

    /**
     * 獲取JDK名稱(chēng)
     */
    public String getName()
    {
        return ManagementFactory.getRuntimeMXBean().getVmName();
    }

    public String getVersion()
    {
        return version;
    }

    public void setVersion(String version)
    {
        this.version = version;
    }

    public String getHome()
    {
        return home;
    }

    public void setHome(String home)
    {
        this.home = home;
    }

    /**
     * JDK啟動(dòng)時(shí)間
     */
    public String getStartTime()
    {
        return DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD_HH_MM_SS, DateUtils.getServerStartDate());
    }

    /**
     * JDK運行時(shí)間
     */
    public String getRunTime()
    {
        return DateUtils.getDatePoor(DateUtils.getNowDate(), DateUtils.getServerStartDate());
    }
}

4、主機系統相關(guān)信息實(shí)體類(lèi)

/**
 * 系統相關(guān)信息
 * 
 * @author csp
 */
public class Sys
{
    /**
     * 服務(wù)器名稱(chēng)
     */
    private String computerName;

    /**
     * 服務(wù)器Ip
     */
    private String computerIp;

    /**
     * 項目路徑
     */
    private String userDir;

    /**
     * 操作系統
     */
    private String osName;

    /**
     * 系統架構
     */
    private String osArch;

    public String getComputerName()
    {
        return computerName;
    }

    public void setComputerName(String computerName)
    {
        this.computerName = computerName;
    }

    public String getComputerIp()
    {
        return computerIp;
    }

    public void setComputerIp(String computerIp)
    {
        this.computerIp = computerIp;
    }

    public String getUserDir()
    {
        return userDir;
    }

    public void setUserDir(String userDir)
    {
        this.userDir = userDir;
    }

    public String getOsName()
    {
        return osName;
    }

    public void setOsName(String osName)
    {
        this.osName = osName;
    }

    public String getOsArch()
    {
        return osArch;
    }

    public void setOsArch(String osArch)
    {
        this.osArch = osArch;
    }
}

5、系統文件相關(guān)信息實(shí)體類(lèi)

/**
 * 系統文件相關(guān)信息
 * 
 * @author csp
 */
public class SysFile
{
    /**
     * 盤(pán)符路徑
     */
    private String dirName;

    /**
     * 盤(pán)符類(lèi)型
     */
    private String sysTypeName;

    /**
     * 文件類(lèi)型
     */
    private String typeName;

    /**
     * 總大小
     */
    private String total;

    /**
     * 剩余大小
     */
    private String free;

    /**
     * 已經(jīng)使用量
     */
    private String used;

    /**
     * 資源的使用率
     */
    private double usage;

    public String getDirName()
    {
        return dirName;
    }

    public void setDirName(String dirName)
    {
        this.dirName = dirName;
    }

    public String getSysTypeName()
    {
        return sysTypeName;
    }

    public void setSysTypeName(String sysTypeName)
    {
        this.sysTypeName = sysTypeName;
    }

    public String getTypeName()
    {
        return typeName;
    }

    public void setTypeName(String typeName)
    {
        this.typeName = typeName;
    }

    public String getTotal()
    {
        return total;
    }

    public void setTotal(String total)
    {
        this.total = total;
    }

    public String getFree()
    {
        return free;
    }

    public void setFree(String free)
    {
        this.free = free;
    }

    public String getUsed()
    {
        return used;
    }

    public void setUsed(String used)
    {
        this.used = used;
    }

    public double getUsage()
    {
        return usage;
    }

    public void setUsage(double usage)
    {
        this.usage = usage;
    }
}

6、服務(wù)器相關(guān)信息實(shí)體類(lèi)

/**
 * 服務(wù)器相關(guān)信息
 * 
 * @author csp
 */
public class Server
{
    private static final int OSHI_WAIT_SECOND = 1000;
    
    /**
     * CPU相關(guān)信息
     */
    private Cpu cpu = new Cpu();

    /**
     * 內存相關(guān)信息
     */
    private Mem mem = new Mem();

    /**
     * JVM相關(guān)信息
     */
    private Jvm jvm = new Jvm();

    /**
     * 服務(wù)器相關(guān)信息
     */
    private Sys sys = new Sys();

    /**
     * 磁盤(pán)相關(guān)信息
     */
    private List<SysFile> sysFiles = new LinkedList<SysFile>();

    public Cpu getCpu()
    {
        return cpu;
    }

    public void setCpu(Cpu cpu)
    {
        this.cpu = cpu;
    }

    public Mem getMem()
    {
        return mem;
    }

    public void setMem(Mem mem)
    {
        this.mem = mem;
    }

    public Jvm getJvm()
    {
        return jvm;
    }

    public void setJvm(Jvm jvm)
    {
        this.jvm = jvm;
    }

    public Sys getSys()
    {
        return sys;
    }

    public void setSys(Sys sys)
    {
        this.sys = sys;
    }

    public List<SysFile> getSysFiles()
    {
        return sysFiles;
    }

    public void setSysFiles(List<SysFile> sysFiles)
    {
        this.sysFiles = sysFiles;
    }

    /**
     * 獲取服務(wù)器主機相關(guān)信息
     * @throws Exception
     */
    public void copyTo() throws Exception
    {
        // 獲取系統信息
        SystemInfo si = new SystemInfo();
        // 根據SystemInfo獲取硬件實(shí)例
        HardwareAbstractionLayer hal = si.getHardware();
        // 獲取硬件CPU信息
        setCpuInfo(hal.getProcessor());
        // 獲取硬件內存信息
        setMemInfo(hal.getMemory());

        // 設置服務(wù)器信息
        setSysInfo();

        // 設置Java虛擬機
        setJvmInfo();

        // 設置磁盤(pán)信息
        setSysFiles(si.getOperatingSystem());
    }

    /**
     * 設置CPU信息
     */
    private void setCpuInfo(CentralProcessor processor)
    {
        // CPU信息
        long[] prevTicks = processor.getSystemCpuLoadTicks();
        Util.sleep(OSHI_WAIT_SECOND);
        long[] ticks = processor.getSystemCpuLoadTicks();
        long nice = ticks[TickType.NICE.getIndex()] - prevTicks[TickType.NICE.getIndex()];
        long irq = ticks[TickType.IRQ.getIndex()] - prevTicks[TickType.IRQ.getIndex()];
        long softirq = ticks[TickType.SOFTIRQ.getIndex()] - prevTicks[TickType.SOFTIRQ.getIndex()];
        long steal = ticks[TickType.STEAL.getIndex()] - prevTicks[TickType.STEAL.getIndex()];
        long cSys = ticks[TickType.SYSTEM.getIndex()] - prevTicks[TickType.SYSTEM.getIndex()];
        long user = ticks[TickType.USER.getIndex()] - prevTicks[TickType.USER.getIndex()];
        long iowait = ticks[TickType.IOWAIT.getIndex()] - prevTicks[TickType.IOWAIT.getIndex()];
        long idle = ticks[TickType.IDLE.getIndex()] - prevTicks[TickType.IDLE.getIndex()];
        long totalCpu = user + nice + cSys + idle + iowait + irq + softirq + steal;
        cpu.setCpuNum(processor.getLogicalProcessorCount());// Cpu 核數
        cpu.setTotal(totalCpu);// CPU總的使用率
        cpu.setSys(cSys);// CPU系統使用率
        cpu.setUsed(user);// CPU用戶(hù)使用率
        cpu.setWait(iowait);// CPU當前等待率
        cpu.setFree(idle);// CPU當前空閑率
    }

    /**
     * 設置內存信息
     */
    private void setMemInfo(GlobalMemory memory)
    {
        mem.setTotal(memory.getTotal());// 總內存大小
        mem.setUsed(memory.getTotal() - memory.getAvailable());// 已使用內存大小
        mem.setFree(memory.getAvailable());// 空閑內存大小
    }

    /**
     * 設置服務(wù)器信息
     */
    private void setSysInfo()
    {
        // 獲取當前的系統屬性
        Properties props = System.getProperties();
        sys.setComputerName(IpUtils.getHostName());// 獲取主機名稱(chēng)
        sys.setComputerIp(IpUtils.getHostIp());// 獲取主機IP
        sys.setOsName(props.getProperty("os.name"));// 獲取主機類(lèi)型 Windows 10
        sys.setOsArch(props.getProperty("os.arch"));// 獲取主機顯卡類(lèi)型 amd64
        sys.setUserDir(props.getProperty("user.dir"));// 獲取項目所在路徑 F:\git\ruoyi\RuoYi-Vue
    }

    /**
     * 設置Java虛擬機
     */
    private void setJvmInfo() throws UnknownHostException
    {
        Properties props = System.getProperties();
        jvm.setTotal(Runtime.getRuntime().totalMemory());// JVM總內存 625.5M
        jvm.setMax(Runtime.getRuntime().maxMemory());// JVM已使用內存 347.99M
        jvm.setFree(Runtime.getRuntime().freeMemory());// JVM空閑內存 277.51M
        jvm.setVersion(props.getProperty("java.version"));// jdk版本 1.8
        jvm.setHome(props.getProperty("java.home"));// JDK安裝路徑 C:\Program Files\Java\jdk1.8.0_201\jre
    }

    /**
     * 設置磁盤(pán)信息
     */
    private void setSysFiles(OperatingSystem os)
    {
        // 根據 操作系統(OS) 獲取 FileSystem
        FileSystem fileSystem = os.getFileSystem();
        // 根據 FileSystem 獲取主機磁盤(pán)信息list集合
        List<OSFileStore> fsArray = fileSystem.getFileStores();
        for (OSFileStore fs : fsArray)
        {
            long free = fs.getUsableSpace();// 磁盤(pán)空閑容量
            long total = fs.getTotalSpace();// 磁盤(pán)總容量
            long used = total - free;// 磁盤(pán)已使用容量
            SysFile sysFile = new SysFile();
            sysFile.setDirName(fs.getMount());// 磁盤(pán)符號 C:\
            sysFile.setSysTypeName(fs.getType());// 磁盤(pán)類(lèi)型 NTFS
            sysFile.setTypeName(fs.getName());// 磁盤(pán)名稱(chēng) 本地固定磁盤(pán) (C:)
            sysFile.setTotal(convertFileSize(total));// 磁盤(pán)總容量
            sysFile.setFree(convertFileSize(free));// 磁盤(pán)空閑容量
            sysFile.setUsed(convertFileSize(used));// 磁盤(pán)已使用容量
            sysFile.setUsage(Arith.mul(Arith.div(used, total, 4), 100));// 磁盤(pán)資源的使用率
            sysFiles.add(sysFile);
        }
    }

    /**
     * 字節轉換
     * 
     * @param size 字節大小
     * @return 轉換后值
     */
    public String convertFileSize(long size)
    {
        long kb = 1024;
        long mb = kb * 1024;
        long gb = mb * 1024;
        if (size >= gb)
        {
            return String.format("%.1f GB", (float) size / gb);
        }
        else if (size >= mb)
        {
            float f = (float) size / mb;
            return String.format(f > 100 ? "%.0f MB" : "%.1f MB", f);
        }
        else if (size >= kb)
        {
            float f = (float) size / kb;
            return String.format(f > 100 ? "%.0f KB" : "%.1f KB", f);
        }
        else
        {
            return String.format("%d B", size);
        }
    }
}

7、Controller接口對接前端

/**
 * 服務(wù)器監控
 * 
 * @author csp
 */
@RestController
@RequestMapping("/monitor/server")
public class ServerController
{
    /**
     * 獲取服務(wù)器相關(guān)信息
     * @return
     * @throws Exception
     */
    @PreAuthorize("@ss.hasPermi('monitor:server:list')")// Spring Security自定義權限控制注解,不影響結果,可以不加
    // AjaxResult 自定義返回結果類(lèi),不影響結果,可以自定義
    @GetMapping()
    public AjaxResult getInfo() throws Exception
    {
        // 獲取服務(wù)器相關(guān)信息
        Server server = new Server();
        server.copyTo();

        return AjaxResult.success(server);
    }
}

到此這篇關(guān)于Java服務(wù)器主機信息監控工具類(lèi)的文章就介紹到這了,更多相關(guān)Java主機信息監控內容請搜索腳本之家以前的文章或繼續瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng )、來(lái)自本網(wǎng)站內容采集于網(wǎng)絡(luò )互聯(lián)網(wǎng)轉載等其它媒體和分享為主,內容觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如侵犯了原作者的版權,請告知一經(jīng)查實(shí),將立刻刪除涉嫌侵權內容,聯(lián)系我們QQ:712375056,同時(shí)歡迎投稿傳遞力量。

人人色在线视频播放| 亚洲成AV人在线观看成年美女| 久久99精品久久久久久齐齐| 国产末成年AV在线播放| 色婷婷日日躁夜夜躁| 欧美高清精品一区二区|