c# - 使用Performance Monitor API 列出本机所有 Performance Counters

本文介绍了如何利用C#编程语言结合Performance Monitor API,列举并获取本机上的性能计数器信息,如CPU、I/O、内存和进程等。虽然示例代码并未列出所有计数器(因为实际操作可能耗时较长),但提出了在实际应用中如何按需筛选和使用性能计数器的方法。
摘要由CSDN通过智能技术生成

在Windows下, 使用Performance monitor取得性能信息(CPU, I/O, Memory, Process) 是首选. 

使用Performance monitor API 可以取得本机的Performance counters, 使用这些counters, 我们可以很方便的应用Performance counters在自己的代码中.

以下代码只是示例, 并未取得所有的Performance counters, 在实际情况中我们也不会这么做, 因为取得所有Counters要花费相当长时间. 在实际情况中, 我们会分别将Performance Counter Category, Instance, Performance Counters 做成不同的List 之后根据用户选择来决定。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
namespace ConsoleApplicationPerfmon
{
    class Program
    {
        /*
         To get a performance counter, we need:
         1.Machine 
         2.Category 
         3.Instance 
         4.Counter 
         
         NOTE:There are performance counters that did not have any instance.So when retrieve counters we using these 2 methods:
            a.PerformanceCounterCategory.GetCounters();
            b.PerformanceCounterCategory.GetCounters(string instan
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值