web-dev-qa-db-ja.com

C#でCPU使用率を取得する方法は?

C#でアプリケーションのCPU使用率全体を取得したい。プロセスのプロパティを詳しく調べる多くの方法を見つけましたが、プロセスのCPU使用率と、TaskManagerで取得する合計CPUのみが必要です。

それ、どうやったら出来るの?

182
Grace

System.Diagnostics から PerformanceCounter クラスを使用できます。

次のように初期化します。

PerformanceCounter cpuCounter;
PerformanceCounter ramCounter;

cpuCounter = new PerformanceCounter("Processor", "% Processor Time", "_Total");
ramCounter = new PerformanceCounter("Memory", "Available MBytes");

次のように消費します:

public string getCurrentCpuUsage(){
            return cpuCounter.NextValue()+"%";
}

public string getAvailableRAM(){
            return ramCounter.NextValue()+"MB";
} 
189
CMS

リクエストされたよりも少し多くなりますが、CPU使用率が1分以上の持続期間で90%以上である場合、追加のタイマーコードを使用して追跡および警告します。

public class Form1
{

    int totalHits = 0;

    public object getCPUCounter()
    {

        PerformanceCounter cpuCounter = new PerformanceCounter();
        cpuCounter.CategoryName = "Processor";
        cpuCounter.CounterName = "% Processor Time";
        cpuCounter.InstanceName = "_Total";

                     // will always start at 0
        dynamic firstValue = cpuCounter.NextValue();
        System.Threading.Thread.Sleep(1000);
                    // now matches task manager reading
        dynamic secondValue = cpuCounter.NextValue();

        return secondValue;

    }


    private void Timer1_Tick(Object sender, EventArgs e)
    {
        int cpuPercent = (int)getCPUCounter();
        if (cpuPercent >= 90)
        {
            totalHits = totalHits + 1;
            if (totalHits == 60)
            {
                Interaction.MsgBox("ALERT 90% usage for 1 minute");
                totalHits = 0;
            }                        
        }
        else
        {
            totalHits = 0;
        }
        Label1.Text = cpuPercent + " % CPU";
        //Label2.Text = getRAMCounter() + " RAM Free";
        Label3.Text = totalHits + " seconds over 20% usage";
    }
}
54
Khalid Rahaman

かなり複雑に思えたいくつかの異なるスレッドを読んでしばらくしてから、私はこれを思いつきました。 SQLサーバーを監視したい8コアマシンに必要でした。以下のコードでは、appNameとして「sqlservr」を渡しました。

private static void RunTest(string appName)
{
    bool done = false;
    PerformanceCounter total_cpu = new PerformanceCounter("Process", "% Processor Time", "_Total");
    PerformanceCounter process_cpu = new PerformanceCounter("Process", "% Processor Time", appName);
    while (!done)
    {
        float t = total_cpu.NextValue();
        float p = process_cpu.NextValue();
        Console.WriteLine(String.Format("_Total = {0}  App = {1} {2}%\n", t, p, p / t * 100));
        System.Threading.Thread.Sleep(1000);
    }
}

8コアサーバーでSQLが使用しているCPUの割合を正しく測定しているようです。

19
MtnManChris

大丈夫、わかった!ご協力いただきありがとうございます!

これを行うコードは次のとおりです。

private void button1_Click(object sender, EventArgs e)
{
    selectedServer = "JS000943";
    listBox1.Items.Add(GetProcessorIdleTime(selectedServer).ToString());
}

private static int GetProcessorIdleTime(string selectedServer)
{
    try
    {
        var searcher = new
           ManagementObjectSearcher
             (@"\\"+ selectedServer +@"\root\CIMV2",
              "SELECT * FROM Win32_PerfFormattedData_PerfOS_Processor WHERE Name=\"_Total\"");

        ManagementObjectCollection collection = searcher.Get();
        ManagementObject queryObj = collection.Cast<ManagementObject>().First();

        return Convert.ToInt32(queryObj["PercentIdleTime"]);
    }
    catch (ManagementException e)
    {
        MessageBox.Show("An error occurred while querying for WMI data: " + e.Message);
    }
    return -1;
}
14
xoxo

WMIを使用してCPUパーセンテージ情報を取得できます。適切な権限がある場合は、リモートコンピューターにログインすることもできます。 http://www.csharphelp.com/archives2/archive334.html を見て、達成できることのアイデアを得てください。

Win32_Process 名前空間のMSDNリファレンスも役立つかもしれません。

CodeProjectの例を参照してください How To:(Almost)Everything In WMI via C#

9
adparadox

CMSには問題はありませんが、Visual Studioでサーバーエクスプローラーを使用してパフォーマンスカウンタータブを操作すると、多くの便利なメトリックを取得する方法を見つけることができます。

5
Tarks

これは私にとってはうまくいくようです。プロセッサが特定の割合に達するまで待つ例です

var cpuCounter = new PerformanceCounter("Processor", "% Processor Time", "_Total");
int usage = (int) cpuCounter.NextValue();
while (usage == 0 || usage > 80)
{
     Thread.Sleep(250);
     usage = (int)cpuCounter.NextValue();
}
3
Jay Byford-Rew

PerformanceCounterソリューションのすべてに1秒のストールを追加する必要がありませんでした。代わりに、WMIソリューションを使用することにしました。 1秒の待機/ストールが存在する理由は、PerformanceCounterを使用する場合に読み取りが正確になるようにするためです。ただし、このメソッドを頻繁に呼び出してこの情報を更新する場合は、非同期プロセスを実行してそれを取得することを考えていても、常にその遅延を発生させないことをお勧めします。

私はここからスニペットで始めました C#を使用してWMIでCPU使用率を返す と、以下の私のブログ投稿にソリューションの完全な説明を追加しました:

WMIを使用してC#のすべてのコアのCPU使用率を取得する

2
atconway

このクラスは、1秒ごとに自動的にカウンターをポーリングし、スレッドセーフでもあります。

public class ProcessorUsage
{
    const float sampleFrequencyMillis = 1000;

    protected object syncLock = new object();
    protected PerformanceCounter counter;
    protected float lastSample;
    protected DateTime lastSampleTime;

    /// <summary>
    /// 
    /// </summary>
    public ProcessorUsage()
    {
        this.counter = new PerformanceCounter("Processor", "% Processor Time", "_Total", true);
    }

    /// <summary>
    /// 
    /// </summary>
    /// <returns></returns>
    public float GetCurrentValue()
    {
        if ((DateTime.UtcNow - lastSampleTime).TotalMilliseconds > sampleFrequencyMillis)
        {
            lock (syncLock)
            {
                if ((DateTime.UtcNow - lastSampleTime).TotalMilliseconds > sampleFrequencyMillis)
                {
                    lastSample = counter.NextValue();
                    lastSampleTime = DateTime.UtcNow;
                }
            }
        }

        return lastSample;
    }
}
1
Colin Breame