Tagged Questions
The performance-counter tag has no wiki summary.
3
votes
2answers
593 views
How to benchmark on multi-core processors
I am looking for ways to perform micro-benchmarks on multi-core processors.
Context:
At about the same time desktop processors introduced out-of-order execution that made performance hard to ...
3
votes
2answers
2k views
Why the cpu performance counter kept reporting 0% cpu usage?
Here is my code snippet:
PerformanceCounter cpuload = new PerformanceCounter();
cpuload.CategoryName = "Processor";
cpuload.CounterName = "% Processor Time";
...
2
votes
3answers
3k views
How to measure program execution time in ARM Cortex-A8 processor?
I'm using an ARM Cortex-A8 based processor called as i.MX515. There is linux Ubuntu 9.10 distribution. I'm running a very big application written in C and I'm making use of gettimeofday(); functions ...
1
vote
1answer
19 views
Why is my ASP.NET MVC Multi instance Performance counter not working
I'm having trouble getting our multi-instance performance counter to work in ASP.NET MVC 3. Creating it as single instance works fine and running our multi-instance perf counter code in a simple ...
1
vote
1answer
73 views
Is there a good .Net library out there for using custom Windows performance counters?
I would like to add instrumentation to an ASP.net MVC app I'm writing. Specifically, to keep track of cost associated with using Amazon's SimpleDB. I was surprised to find that my costs there were ...
0
votes
1answer
96 views
VS Load Test and 'Total Bytes Sent' Performance Counter?
I have a load test for a WCF service, where we are trying out different compression libraries and configurations and we need to measure the total number of mb sent during a test. Is there a ...
0
votes
1answer
327 views
Monitoring disk performance with MRTG
I use MRTG to monitor vital stats on my servers like disk space, CPU load, memory usage, temperatures etc.
It all works fine and well for parameters that don't change rapidly.
By running small VB ...
0
votes
1answer
1k views
ASP.NET/C# - Custom PerformanceCounters only show up in 32-bit perfmon on 64-bit system
I'm trying to create a set of custom performance counters to be used by my ASP.NET application. I use the following code to increment the counters:
internal static void Increment(String instanceName, ...