Tagged Questions
4
votes
1answer
247 views
What would make PerformanceCounterCategory.Exists hang indefinitely?
I've got an application that uses performance counters, that has worked for months. Now, on my dev machine and another developers machine, it has started hanging when I call ...
4
votes
6answers
376 views
Are performance counters the right tool for my job? If so, how do I use them?
I've been asked how to find out how much memory and CPU my program is using, and I've been referred to Performance Counters. However, when I look at the documentation it starts off by telling me ...
4
votes
3answers
596 views
Counter of type RateOfCountsPerSecond32 always shows 0
I have a windows service that serves messages of some virtual queue via a WCF service interface.
I wanted to expose two performance counters -
The number of items on the queue
The number of items ...
2
votes
1answer
47 views
RawFraction performance counter persists its state even after deleting the performance category
I am creating and setting up the performance counters correctly but when I delete the category, recreate the category with the same name and add/update the counters to that category, it fails to ...
2
votes
2answers
591 views
C# replacement for PerformanceCounter
I'm wondering if there is a ".net integrated" solution for exact time measurement (like the execution time of a function)? At the moment I'm using the PerformanceCounters from Kernel32.
...
1
vote
1answer
120 views
what is the usage of PerformanceCounter class in .net?
I worked on enterprise library performance that I met this class. Now what is the usage of PerformanceCounter class?
1
vote
1answer
781 views
How do I get MSMQ performance counters?
I have a bunch of MSMQs that I have created programatically using MessageQueue.Create(path) but when I look in perfmon I don't see those queue instances listed, only queues I created manually are ...
0
votes
1answer
97 views
unregistering a performance counters
I have added performance custom counters to my application to
whether the no of times the operation takes place or not .
But now I want to unregister it .
Is it possible to unregister it remove ...
0
votes
1answer
182 views
What performance counter type to use?
We do use zip compression in our application quite extensively. I need to measure performance of different zip compressors using real life data (synthetic tests that we performed appear to be not very ...