系统信息收集API Sigar

久未见 提交于 2020-04-14 14:33:03

【推荐阅读】微服务还能火多久?>>>

1. Sigar简介

Sigar(System Information Gatherer And Reporter),是一个开源的工具,提供了跨平台的系统信息收集的API,核心由C语言实现的。

可以被以下语音调用:

  • C/C++

  • Java (sigar.jar auto-loads the native library)

  • Perl (requires bindings/perl build)

  • .NET C# (requires bindings/csharp build)

  • Ruby (requires bindings/ruby build)

  • Python (requires bindings/python build)

  • PHP (requires bindings/php build)

  • Erlang (requires bindings/erl build)

可以收集的信息包括:
1, CPU信息,包括基本信息(vendor、model、mhz、cacheSize)和统计信息(user、sys、idle、nice、wait)
2, 文件系统信息,包括Filesystem、Size、Used、Avail、Use%、Type
3, 事件信息,类似Service Control Manager
4, 内存信息,物理内存和交换内存的总数、使用数、剩余数;RAM的大小
5, 网络信息,包括网络接口信息和网络路由信息
6, 进程信息,包括每个进程的内存、CPU占用数、状态、参数、句柄
7, IO信息,包括IO的状态,读写大小等
8, 服务状态信息
9, 系统信息,包括操作系统版本,系统资源限制情况,系统运行时间以及负载,JAVA的版本信息等.

2. 配置

将sigar.jar、jug-2.0.0-asl.jar、junit-3.8.2.jar、log4j-1.2.14.jar、libsigar-amd64-linux.so、libsigar-x86-linux.so等文件放到java需要调用的lib库下。

String str=System.getProperty("java.library.path");
System.out.println(str);

上面可以查看java.library.path加载路径。

3. 源代码

package com.nesec.util;

import java.net.InetAddress;
import java.net.UnknownHostException;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;

import org.hyperic.sigar.CpuPerc;
import org.hyperic.sigar.FileSystem;
import org.hyperic.sigar.FileSystemUsage;
import org.hyperic.sigar.Mem;
import org.hyperic.sigar.Sigar;
import org.hyperic.sigar.Swap;

import com.nesec.bean.ServerInfoFormMap;

public class SystemInfo {
    public static ServerInfoFormMap SystemProperty() {
        ServerInfoFormMap monitorMap = new ServerInfoFormMap();
        Runtime r = Runtime.getRuntime();
        Properties props = System.getProperties();
        InetAddress addr = null;
        String ip = "";
        String hostName = "";
        try {
            addr = InetAddress.getLocalHost();
        } catch (UnknownHostException e) {
            ip = "无法获取主机IP";
            hostName = "无法获取主机名";
        }
        if (null != addr) {
            try {
                ip = addr.getHostAddress();
            } catch (Exception e) {
                ip = "无法获取主机IP";
            }
            try {
                hostName = addr.getHostName();
            } catch (Exception e) {
                hostName = "无法获取主机名";
            }
        }
        monitorMap.put("hostIp", ip);// 本地ip地址
        monitorMap.put("hostName", hostName);// 本地主机名
        monitorMap.put("osName", props.getProperty("os.name"));// 操作系统的名称
        monitorMap.put("arch", props.getProperty("os.arch"));// 操作系统的构架
        monitorMap.put("osVersion", props.getProperty("os.version"));// 操作系统的版本
        monitorMap.put("processors", r.availableProcessors());// JVM可以使用的处理器个数
        monitorMap.put("javaVersion", props.getProperty("java.version"));// Java的运行环境版本
        monitorMap.put("vendor", props.getProperty("java.vendor"));// Java的运行环境供应商
        monitorMap.put("javaUrl", props.getProperty("java.vendor.url"));// Java供应商的URL
        monitorMap.put("javaHome", props.getProperty("java.home"));// Java的安装路径
        monitorMap.put("tmpdir", props.getProperty("java.io.tmpdir"));// 默认的临时文件路径
        return monitorMap;
    }

    public static ServerInfoFormMap memory(Sigar sigar) {
        ServerInfoFormMap monitorMap = new ServerInfoFormMap();
        try {
            Runtime r = Runtime.getRuntime();
            monitorMap.put("jvmTotal", Common.div(r.totalMemory(), (1024 * 1024), 2) + "M");// java总内存
            monitorMap.put("jvmUse", Common.div(r.totalMemory() - r.freeMemory(), (1024 * 1024), 2) + "M");// JVM使用内存
            monitorMap.put("jvmFree", Common.div(r.freeMemory(), (1024 * 1024), 2) + "M");// JVM剩余内存
            monitorMap.put("jvmUsage", Common.div(r.totalMemory() - r.freeMemory(), r.totalMemory(), 2));// JVM使用率
            Sigar sigar2 = new Sigar();
            Mem mem = sigar2.getMem();
            // 内存总量
            monitorMap.put("ramTotal", Common.div(mem.getTotal(), (1024 * 1024 * 1024), 2) + "G");// 内存总量
            monitorMap.put("ramUse", Common.div(mem.getUsed(), (1024 * 1024 * 1024), 2) + "G");// 当前内存使用量
            monitorMap.put("ramFree", Common.div(mem.getFree(), (1024 * 1024 * 1024), 2) + "G");// 当前内存剩余量
            monitorMap.put("ramUsage", Common.div(mem.getUsed(), mem.getTotal(), 2));// 内存使用率

            Swap swap = sigar2.getSwap();
            // 交换区总量
            monitorMap.put("swapTotal", Common.div(swap.getTotal(), (1024 * 1024 * 1024), 2) + "G");
            // 当前交换区使用量
            monitorMap.put("swapUse", Common.div(swap.getUsed(), (1024 * 1024 * 1024), 2) + "G");
            // 当前交换区剩余量
            monitorMap.put("swapFree", Common.div(swap.getFree(), (1024 * 1024 * 1024), 2) + "G");
            monitorMap.put("swapUsage", Common.div(swap.getUsed(), swap.getTotal(), 2));//

        } catch (Exception e) {
        }
        return monitorMap;
    }
    
    public static ServerInfoFormMap usage(Sigar sigar) {
        ServerInfoFormMap monitorMap = new ServerInfoFormMap();
        try {
            Runtime r = Runtime.getRuntime();
            monitorMap.put("jvmUsage", Math.round(Common.div(r.totalMemory()-r.freeMemory(), r.totalMemory(), 2)*100));// JVM使用率

            Mem mem = sigar.getMem();
            // 内存总量
            monitorMap.put("ramUsage", Math.round(Common.div(mem.getUsed(), mem.getTotal(), 2)*100));// 内存使用率

             List<ServerInfoFormMap> cpu = cpuInfos(sigar);
            double b = 0.0;
            for (ServerInfoFormMap m : cpu) {
                b += Double.valueOf(m.get("cpuTotal")+"");
            }
            monitorMap.put("cpuUsage", Math.round(b/cpu.size()));// cpu使用率
        } catch (Exception e) {
        }
        return monitorMap;
    }

    public static List<ServerInfoFormMap> cpuInfos(Sigar sigar) {
        List<ServerInfoFormMap> monitorMaps = new ArrayList<ServerInfoFormMap>();
        try {
            CpuPerc cpuList[] = sigar.getCpuPercList();
            for (CpuPerc cpuPerc : cpuList) {
                ServerInfoFormMap monitorMap = new ServerInfoFormMap();
                monitorMap.put("cpuUserUse", Math.round(cpuPerc.getUser()*100));// 用户使用率
                monitorMap.put("cpuSysUse", Math.round(cpuPerc.getSys()*100));// 系统使用率
                monitorMap.put("cpuWait", Math.round(cpuPerc.getWait()*100));// 当前等待率
                monitorMap.put("cpuFree", Math.round(cpuPerc.getIdle()*100));// 当前空闲率
                monitorMap.put("cpuTotal",Math.round(cpuPerc.getCombined()*100));// 总的使用率
                monitorMaps.add(monitorMap);
            }
        } catch (Exception e) {
        }
        return monitorMaps;
    }

    public static List<ServerInfoFormMap> diskInfos(Sigar sigar) throws Exception {
        List<ServerInfoFormMap> monitorMaps = new ArrayList<ServerInfoFormMap>();
        FileSystem fslist[] = sigar.getFileSystemList();
        for (int i = 0; i < fslist.length; i++) {
            ServerInfoFormMap monitorMap = new ServerInfoFormMap();
            FileSystem fs = fslist[i];
            // 文件系统类型名,比如本地硬盘、光驱、网络文件系统等
            FileSystemUsage usage = null;
            usage = sigar.getFileSystemUsage(fs.getDirName());
            switch (fs.getType()) {
            case 0: // TYPE_UNKNOWN :未知
                break;
            case 1: // TYPE_NONE
                break;
            case 2: // TYPE_LOCAL_DISK : 本地硬盘

                monitorMap.put("diskName", fs.getDevName());// 系统盘名称
                monitorMap.put("diskType", fs.getSysTypeName());// 盘类型
                // 文件系统总大小
                monitorMap.put("diskTotal", usage.getTotal());
                // 文件系统剩余大小
                monitorMap.put("diskFree", usage.getFree());
                // 文件系统已经使用量
                monitorMap.put("diskUse", usage.getUsed());
                double usePercent = usage.getUsePercent() * 100D;
                // 文件系统资源的利用率
                monitorMap.put("diskUsage", usePercent);// 内存使用率
                monitorMaps.add(monitorMap);
                break;
            case 3:// TYPE_NETWORK :网络
                break;
            case 4:// TYPE_RAM_DISK :闪存
                break;
            case 5:// TYPE_CDROM :光驱
                break;
            case 6:// TYPE_SWAP :页面交换
                break;
            }
        }
        return monitorMaps;
    }

    public static void main(String[] args) throws Exception{
        //ServerInfoFormMap serverinfo = SystemInfo.SystemProperty();
        //ServerInfoFormMap memory = SystemInfo.memory(new Sigar());
        //ServerInfoFormMap usage = SystemInfo.usage(new Sigar());
        //List<ServerInfoFormMap> cpuInfos = SystemInfo.cpuInfos(new Sigar());
        //List<ServerInfoFormMap> diskInfos = SystemInfo.diskInfos(sigar);
    }
}

4. View

结合Highcharts作视图的展示:


标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!