Tagged Questions

5
votes
3answers
2k views

Concept of “Performance Counters” in Linux/Unix

Windows has a Performance Counters infrastructure. The OS provides some common counters, and I can go add my own. What is the corresponding concept in Linux/Unix?
4
votes
2answers
341 views

How do I figure out whether my process is CPU bound, I/O bound, Memory bound or

I'm trying to speed up the time taken to compile my application and one thing I'm investigating is to check what resources, if any, I can add to the build machine to speed things up. To this end, how ...
3
votes
2answers
508 views

Windows Performance Counter limits

What limits exist on the amount of data one can publish to a custom Windows performance counter category? I understand there is no hard limit on the number of counters or the number of instances, but ...
1
vote
1answer
127 views

Are instance names for system performance counters localized?

Performance counter names in Windows are localized, so for instance the counter \Processor(_Total)\% Processor Time is called something else in other language versions of Windows. This means that in ...
1
vote
1answer
114 views

What's a good reference for creating and updating Performance Counters in unmanaged code?

I have several apps that need to create and write to Performance Counters. One of them is written in C++. Currently, upgrading that app to .NET is not an option. Where is a good resource for accessing ...
0
votes
1answer
70 views

Race condition with Performance Counters for current process

I am trying to get around the old "How do I get a Windows Performance Counter for the current process" issue. Basically I am enumerating Process Object instances to get a list of Process objects that ...
0
votes
1answer
57 views

Measuring average execution time in service

I'm trying to use Windows Performance Counters to measure the Hits Per Second and Seconds Per Hit of a WCF service and am seeing some strange results. Currently, what I'm doing is this: public void ...
0
votes
1answer
109 views

What is the best configuration for counters logs in Windows?

I am going to program a little application for check any bottlenecks which might be in my Windows systems. So that, I think to use Performance Monitor to collect data from Disk, memory, network and ...