473,671 Members | 2,422 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PerformanceCoun ter CPU 0% ???

13 New Member
Hi there!

Currently I'm trying to display the current performance of my servers on my website. I tried it with the following code:

Expand|Select|Wrap|Line Numbers
  1.     protected static PerformanceCounter cpuCounter;
  2.     protected static PerformanceCounter ramCounter;
  3.  
  4.     protected void Page_Load(object sender, EventArgs e)
  5.     {
  6.         try
  7.         {
  8.             Timer1.Tick += new EventHandler<EventArgs>(Timer1_Tick);
  9.             Timer1.Interval = 2000;
  10.  
  11.             cpuCounter = new PerformanceCounter("Processor", "% Processor Time", "_Total");
  12.             ramCounter = new PerformanceCounter("Memory", "Available MBytes");
  13.         }
  14.         catch (Exception exc)
  15.         { 
  16.         lbl_error.Text = "Error: " + exc.Message;
  17.         }
  18.     }
  19.  
  20.     void Timer1_Tick(object sender, EventArgs e)
  21.     {
  22.         lbl_text.Text = "<b>WebServer</b> <br/>";
  23.         lbl_text.Text += "CPU Usage: " +getCurrentCpuUsage() + "<br/>";
  24.         lbl_text.Text += "Available Ram: " + getAvailableRAM() + "<br/>";
  25.     }
  26.  
  27.     public string getCurrentCpuUsage()
  28.     {
  29.         return cpuCounter.NextValue() + "%";
  30.     }
  31.     public string getAvailableRAM()
  32.     {
  33.             return ramCounter.NextValue()+"Mb";
  34.     }
  35.  
Currently only the available ram is being showed on the page and the CPU load stays on 0% while in the Performance monitor of Microsoft it says otherwise :S

Thanks in advanced!
Jan 27 '09 #1
1 4193
Curtis Rutland
3,256 Recognized Expert Specialist
I have the same results as you. I'm interested in this thread, hope someone has an answer.
Jan 27 '09 #2

Sign in to post your reply or Sign up for a free account.

Similar topics

1
3290
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 { if(System.Diagnostics.PerformanceCounterCategory.Exists("LogisOnline"))
1
7280
by: Chris | last post by:
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;
1
4221
by: jimbo | last post by:
Here is my problem. I'm creating an Instrumentation class that will use previously created Performance Categories and Counters in order to time various processes (ie. query duration etc.). This Instrumentation class will be used by a variety of "services", so the Categories and Counters to be used within the object must be set during object construction. So I created a class variable array of: private static PerformanceCounter...
0
1277
by: BuddyWork | last post by:
Hello, Can someone please explain why my Instances are not appearing in Perfmon. Here is my code to create the counters. CounterCreationDataCollection CCDC = new CounterCreationDataCollection();
0
1103
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.
0
1131
by: Henning Krause [MVP] | last post by:
Hello, I've created a simple website which instantiates a PerformanceCounter object on any existing counter. On the Page_Load() event I set a label to the value of the performancecounter (via counter.NextValue()). My testmachine is a Windows 2000 SP4, IE6 SP1, .NET Framework 1.1 SP 1. When I open the Page, the Performance Counter value is displayes as
3
2881
by: Rob Meade | last post by:
Hi all, I'm having a bit of trouble with the following function.... Private Function GetSystemUpTime() As TimeSpan ' declare variables Dim Result As TimeSpan Dim PerformanceCounter As PerformanceCounter
0
1237
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 debugging, the cscript / wscript.exe process never leaves memory. I've tried this same code in a...
3
4588
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 demonstration of the issue, I created the following class: ============================
0
8483
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 usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8401
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 synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8926
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. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8824
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 captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8603
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 most users, this new feature is actually very convenient. If you want to control the update process,...
0
8673
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 choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4416
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2060
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.