浅谈如何获取机器的memory和CPU信息

最近做了一个项目,需要获取机器的CPU和memory的使用情况。花了一些时间网上搜索了一下,自己也做了些测试。总结下来,基本上2种方式:一种是用WMI(2种),另一种是用Performance counter。

1. Use WMI to create connection to the computer passing username and password. Once the connection is created,  query the CPU& memory by passing the query, similar as SQL.  This way can get CPU & memory for remote PC and local PC. For example:

System.Management.ConnectionOptions Conn = new ConnectionOptions();

Conn.Username = mpusername;

            Conn.Password = mppwd;

            string scopestring = "//" + mpserver + "/root/cimv2";

            System.Management.ManagementScope Ms = new ManagementScope(scopestring);

            Ms.Connect();

            mos.Scope = Ms;

ObjectQuery oq = new ObjectQuery();

            oq.QueryString = "select * from Win32_Processor";

            mos.Query = oq;

            ManagementObjectCollection moc = mos.Get();

 

内存这块花了比较多的时间,之前的对象已经过期,不能使用了,最后找到这个类“Win32_PerfRawData_PerfOS_Memory”

ManagementObjectCollection mcr = mcp.getQueryResult("select * from Win32_ComputerSystem");
           
            foreach (ManagementObject mo in mcr)
            {
                if (mo["TotalPhysicalMemory"] != null)
                {
                    totalm = long.Parse(mo["TotalPhysicalMemory"].ToString());
                }
            }
            ManagementObjectCollection moc = mcp.getQueryResult("select * from Win32_PerfRawData_PerfOS_Memory");
            foreach (ManagementObject mo in moc)
            {
                string avilable = mo.GetPropertyValue("AvailableBytes").ToString();
                avilablem = long.Parse(avilable);
            }

 

 

2. Get local server’s CPU and momory information passing the WMI classes, such as “Win32_Processor”, “Win32_OperatingSystem”

ManagementClass mc = new ManagementClass("Win32_OperatingSystem");

           ManagementObjectCollection moc = mc.GetInstances();

3. Use performance counter to get performance data passing the performance counter name, such as monitor.PerformanceCounterFun("Processor", "_Total", "% Processor Time"). Normally we shoud get performance counter data several times, then use the average values.

 

虽然这些比较简单,但是自己还是想把它记录下来,希望对大家能有用!

转载于:https://www.cnblogs.com/iris0420/p/6972373.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值