473,563 Members | 2,904 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PerformanceCoun ter: Only 0% or 100% when get % Processor Time

I'm trying to do something really easy: just get the % CPU load. However, I
just get mostly 0's sprinkled with an occasional 100. I poked around on
the web for info, but all the stuff I found (I think) does what I have
below. Am I blanking out on something here?

Getting the available RAM works fine.

Code example below:

using System;
using System.Diagnost ics;

namespace PerfMon
{
class Class1
{
[STAThread]
static void Main(string[] args)
{
//Create CPU counter
PerformanceCoun ter cpuCounter = new PerformanceCoun ter();
cpuCounter.Cate goryName = "Processor" ;
cpuCounter.Coun terName = "% Processor Time";
cpuCounter.Inst anceName = "_Total";

//Create RAM counter
//PerformanceCoun ter ramCounter = new PerformanceCoun ter();
//ramCounter.Cate goryName = "Memory";
//ramCounter.Coun terName = "Available MBytes";

//Display counter
int i;
for (i=0;i<100;i++)
{
Console.WriteLi ne(cpuCounter.N extValue().ToSt ring());
}

Console.ReadLin e();
}
}
}
Nov 15 '05 #1
1 7255
Chris wrote:
|| I'm trying to do something really easy: just get the % CPU load.
|| However, I just get mostly 0's sprinkled with an occasional 100. I
|| poked around on the web for info, but all the stuff I found (I
|| think) does what I have below. Am I blanking out on something here?
||
|| Getting the available RAM works fine.

Available RAM is a static value, CPU usage is dynamic you shouldn't read it in a tight loop, insert a sleep period of let's say 1
sec. to allow the OS to update the counter, and look for yourself.

|| for (i=0;i<100;i++)
|| {
|| Console.WriteLi ne(cpuCounter.N extValue().ToSt ring());
System.Threadin g.Thread.Sleep( 1000);
|| }
||
|| Console.ReadLin e();
|| }
|| }
|| }

Willy.
Nov 15 '05 #2

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3285
by: W1ld0ne74 | last post by:
I am implimenting Performance counters into a web application. I use the following code to create the counters during setup: private void SetupPerfCntrs() { System.Diagnostics.CounterCreationDataCollection CounterDatas = null; System.Diagnostics.CounterCreationData cdCounter4 = null; try {...
0
1235
by: Ivan | last post by:
I have comp A that I'm trying to read a counter from. I have comp B where I want perfmon.exe to display the counter from A. The counter on A is "Processor/% Processor Time/_Total". I create a custom counter on B that is named "A's Processor/% Processor Time/_Total". I feed the RawValue of B's counter using the RawValue of A's counter but B's...
0
1099
by: Michiel | last post by:
Hello, I'm trying to retrieve my cpu load as follows : PerformanceCounter* cpuCounter = new PerformanceCounter("Processor", "% Processor Time", "_Total"); float value = cpuCounter->NextValue(); However, this always returns 0.0. The same query used in perfmon.exe works fine.
7
2944
by: JvCoach23 | last post by:
I'm trying to write some that is database driven. What it does it loop through a dataset and populate the categoryName CounterName InstanceName MachineName properties of the performancecounter object (I think I have the speak right there)
2
2754
by: Michael Moreno | last post by:
Good morning, Here is the objective: monitoring the CPU usage of a given thread in my own C# application. Here is what I do: - on a Form I put a PerformanceCounter - I set e CategoryName = Thread - I set the CounterName = % Processor time - I set the Machine = . (local machine)
0
1227
by: Scheu | last post by:
Hi all, I'm hoping someone can help me with this bizarre problem. If I create a new PerformanceCounter object in a ComVisible class and invoke it from wscript, it never seems to terminate. When debugging, Visual Studio never leaves the (running) state when the Go function exits (even clicking the 'Stop Debugging' button fails). When not...
3
4581
by: Geoff McElhanon | last post by:
I have been struggling with a security issue that occurs under .NET 2.0, but does not occur under .NET 1.1. Essentially I am trying to open up a performance counter on a remote server and monitor its value. In .NET 1.1 this worked fine, however under .NET 2.0 it fails when I am not an administrator on the remote server. To provide a lean...
11
5400
by: =?Utf-8?B?U2FsYW1FbGlhcw==?= | last post by:
Has anybody worked with performancecounter object to access counters on remote machine? I managed to write code that retrieves counters categories froma remote machine, when I try another remote machine I get "System.ComponentModel.Win32Exception" error. Error message is "The network path was not found." I have checked running services (RPC,...
1
4188
by: bobido | last post by:
Hi there! Currently I'm trying to display the current performance of my servers on my website. I tried it with the following code: protected static PerformanceCounter cpuCounter; protected static PerformanceCounter ramCounter; protected void Page_Load(object sender, EventArgs e) {
0
7665
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7583
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7888
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8106
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7642
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7950
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6255
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5484
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
3626
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.