3
votes
4answers
55 views
What is the most appropriate performance counter type for measuring operation time?
Say I have a method Foo() and I want to measure the time in milliseconds it took to execute which type of Windows Performance Counter should I be using?
var stopwatch = new Stopwatch();
…
3
votes
1answer
598 views
What are the best perfmon counters for an ASP.net application?
What are the best performance monitors one can set to monitor an asp.net application?
I don't have direct access to the server in question, so I sort of have to explicitly ask for certain things …
2
votes
2answers
588 views
Concurrent open TCP connections in WCF service
We have a WCF service with multiple TCP endpoints. I am interested in monitoring the total number of concurrent open connections at any given time. Are there any perfmon counters that will allow us …
2
votes
4answers
380 views
How can I use Performance Counter in w2k8
Hello
Problem:
I can add+use performance counters in w2k8 with normal user privileges.
If I try to create or access a Process performance counter, i get a message that the counter does not exist.
…
2
votes
5answers
827 views
Java app performance counters viewed in Perfmon
Hello,
I have a Java app running on Tomcat, and I would like to monitor counters using Windows Performance Monitor. Is this possible using a JMX adapter for the Java MBeans or by some other means?
1
vote
1answer
34 views
How do I grant a service user sufficient rights to create registry keys in windows 7
I have an application that runs as a service, and dynamically creates and publishes windows performance (perfmon) counters.
When I run the application under my own account (as a service) which has …
1
vote
2answers
250 views
Creating a PerfMon counter to record an average per call (C#)
How can I use PerfMon counters to record the average execution time of a method in C#?
So far I've only found sample code to incrememnt or decrement a PerfMon counter.
1
vote
1answer
193 views
PerformanceCounterCategory.Exists throwing ‘Input string was not in a correct format.’
When I'm checking for the existance of a performace category using
PerformanceCounterCategory.Exists("myCategory")
on a system (clean install of XP SP3) where the category doesn't exist I'm getting …
1
vote
0answers
206 views
IO Other Operations Performance Counter Explanation
I have received perfmon counters from customer site. We noticed unusual values in \COMPUTERNAME\Process(PROCESS_NAME)**IO Other Operations/sec**.
The best explanation for the counter I came up with …
1
vote
1answer
155 views
Problem with performance counters on Vista
I'm running into a strange issue on Vista with the Performance monitoring API. I'm currently using code that worked fine on XP/2k, based around PdhGetFormattedCounterValue(). I start out using …
1
vote
2answers
201 views
Where can I find documentation for publishing data to perfmon in C++?
Years ago I wrote some code to "publish" data for perfmon to consume. Using those counters is pretty well documented, but I found it challenging to find (at the time) good documentation and sample …
1
vote
2answers
226 views
CPU Utiliztion per process in Win32 API
I am doing a project on a centralized LAN management system. I need to know how many CPU cycles is each process of a remote PC consuming(as in a Task Manager )so that the network admin can close few …
1
vote
3answers
222 views
Memory consumption details of a .NET application
I am debugging some memory problems related to a managed application that we have. I was monitoring the application using perfmon when I got confused about the memory difference between the .NET Bytes …
1
vote
5answers
761 views
Performance monitor shows 4294967293 sessions active
I have an ASP.Net 3.5 website running in IIS 6 on Windows Server 2003 R2. It is a relatively small internal application that probably serves less than ten users at any given time. The server has 4 …
1
vote
2answers
2k views
How to reset Performance objects in perfmon?
When I launch perfmon and try to add a counter, the displayed performance objects are all numbers. How can I reset these Performance objects?
