Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8804713
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T01:40:38+00:00 2026-06-14T01:40:38+00:00

I also understand I can also use this programatically by creating a performance counter

  • 0

I also understand I can also use this programatically by creating a performance counter by using System.Diagnostics.PerformanceCounter, and get the counter value using NextValue() method.

Process p = Process.GetProcessById(10204);
            PerformanceCounter ramCounter = new PerformanceCounter("Process", "Working Set - Private", p.ProcessName);
            PerformanceCounter cpuCounter = new PerformanceCounter("Process", "% User Time", p.ProcessName);
                while (true)
                {
                    Thread.Sleep(1000);
                    double ram = ramCounter.NextValue();
                    double cpu = cpuCounter.NextValue();
                    Console.WriteLine("RAM: " + (ram / 1024 / 1024) + "MB");
                    Console.WriteLine("CPU: " + (cpu) + " %");
                }

I found this code online and In Here I am more insterested in Calculating Average CPU and Average RAM at the end of this test and store it in a Var to compare it against another variable. any nice ideas

thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T01:40:40+00:00Added an answer on June 14, 2026 at 1:40 am
    using System;
    using System.Diagnostics;
    using System.Threading;
    
    namespace ConsoleApplication4
    {
        class Program
        {
            static void Main(string[] args)
            {
                double totalRam = 0.0d;
                double cpu = 0.0d;
    
                Process p = Process.GetProcessById(1188);
                var ramCounter = new PerformanceCounter("Process", "Working Set - Private", p.ProcessName);
                var cpuCounter = new PerformanceCounter("Process", "% User Time", p.ProcessName);
                int n = 0;
                while (n < 20)
                {
                    Thread.Sleep(1000);
                    double ram = ramCounter.NextValue();
                    cpu += cpuCounter.NextValue();
                    totalRam += (ram / 1024 / 1024);
                    n++;
                }
    
                double avgRam = totalRam/n;
                double avgCpu = cpu/n;
                Console.WriteLine("Average Ram is {0} ", avgRam);
                Console.WriteLine("Average Cpu is {0} ", avgCpu);
                Console.ReadLine();
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I understand that using Perfmon.msc you can create a custom performance counter and by
If I have this box in CSS3 (also if, for what I understand, this
On my local development machine (php 5.3.14) I can use a class like this:
I understand that static method inheritance is not supported in C#. I have also
If I understand it right, a printer is also a file from the operating
I have used commands like Top and also tools like Traceview to understand the
I am trying to understand simple snaplet construction. Also, when do I actually need
I don't understand, I have a toolbar with buttons bind to custom commands. Also
Also trying to avoid any use of plugins, (apart from jQuery of course, whether
Also what will be the scenarios where this query is used select * from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.