Go Back  Xtreme Visual Basic Talk > Visual Basic .NET (2002/2003/2005/2008, including Express editions) > .NET General > PerformanceCounter taking 40-50 seconds to be created


Reply
 
Thread Tools Display Modes
  #1  
Old 05-26-2009, 11:30 AM
torpkevuk's Avatar
torpkevuk torpkevuk is offline
Contributor
 
Join Date: Oct 2003
Location: Nebraska, USA
Posts: 640
Default PerformanceCounter taking 40-50 seconds to be created


Ok, need to ask because this is driving me nuts now.

I have a performance counter set up to pull % Processor Time on a remote machine.

Heres the code I use to pull it:
Code:
Private cpuCounter As PerformanceCounter = Nothing Try cpuCounter = New PerformanceCounter("Processor", "% Processor Time", "_Total", strServer) Catch ex As Exception MessageBox.Show(ex.Message) End Try

However, sometimes it can take 40-50 seconds for this one counter to process.. when its been created (the 'cpuCounter =' line), then it runs just fine, I can pull nextvalue without any problem.. but creating it takes forever.

This only happens the first time I run my program and it only happens with the first counter, and it doesn't ALWAYS happen.

Any idea how I can try and track down whats holding me up here? All the other counters are fine, its just the first one.. am I missing some log-in step or something?

Thanks
Reply With Quote
  #2  
Old 05-27-2009, 07:24 AM
torpkevuk's Avatar
torpkevuk torpkevuk is offline
Contributor
 
Join Date: Oct 2003
Location: Nebraska, USA
Posts: 640
Default

I think I have my problem.. my curse of it being in alphabetical order.. the first server I was hitting was actually a server in a remote location.. forgot that one was even in the list.. uch.

When I query a machine on the local lan it goes a lot quicker

Thanks anyway guys
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->