.net中调用windows performance记录性能信息

记录skype的CPU 占用率

.net中调用windows performance记录性能信息
var processorCounter = new PerformanceCounter
{
       CategoryName = "Process",
       CounterName = "% Processor Time",
       InstanceName = “skype”,
       MachineName = "."
};

processorCounter.NextValue()
.net中调用windows performance记录性能信息

 

 记录skype的内存占用

.net中调用windows performance记录性能信息
var memoryCounter = new PerformanceCounter
{
    CategoryName = "Process",
    CounterName = "Working Set - Private",
    InstanceName = “skype”,
    MachineName = "."
};

memoryCounter.RawValue  返回的是字节为计量单位
.net中调用windows performance记录性能信息

获取当前计算计算机的cpu和内存占用情况

.net中调用windows performance记录性能信息
counter = new PerformanceCounter("Processor", "% Processor Time", “_total”);

counter.NextValue() cpu占用

ComputerInfo ComputerInfo = new ComputerInfo();

ComputerInfo.TotalPhysicalMemory - ComputerInfo.AvailablePhysicalMemory 内存占用
.net中调用windows performance记录性能信息

注意, 使用Counter的时候,如果instanceName 不存在, 会出现异常。


.net中调用windows performance记录性能信息

本文基于署名 2.5 *许可协议发布,欢迎转载,演绎或用于商业目的,但是必须保留本文的署名justrun(包含链接)。如您有任何疑问或者授权方面的协商,请给我留言


本文转自JustRun博客园博客,原文链接:http://www.cnblogs.com/JustRun1983/archive/2012/05/27/2520266.html,如需转载请自行联系原作者

上一篇:阿里云远程服务器安装redis


下一篇:hutool介绍