Tagged Questions
The performance-counters tag has no wiki summary.
17
votes
3answers
4k views
What are the best ASP.NET performance counters to monitor?
There are truckloads of counters available in perfmon for ASP.NET. What are the best (I am thinking of choosing 5-10) that will be the best to monitor in our test environment so that we can feed back ...
8
votes
1answer
566 views
Creating & Editing performance counters in a powershell script or command line
I'm trying to move the verification & creation of my performance counter groups, and the counters themselves, out of my web service and into a powershell script that's run during deployment.
Can ...
6
votes
5answers
4k views
How to detect SqlServer connection leaks in a ASP.net applications?
I'm currently doing some GUI testing on a ASP.net 2.0 application.
The RDBMS is SQL Server 2005. The host is Win Server 2003 / IIS 6.0.
I do not have the source code of the application because it ...
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 ...
4
votes
6answers
357 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
546 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 ...
3
votes
2answers
147 views
Are performance counters the best way to implement and average per second count?
I want to include some sort of performance counts in my application. Are Windows Performance counters (Perfmon) counters the best way to go. I am just worried that maybe it is too much overhead for ...
3
votes
1answer
238 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 ...
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 ...
2
votes
1answer
35 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
0answers
82 views
tools for displaying custom performance counters across multiple machines
I want to monitor the performance of my application.
I wrote custom performance counters and monitored them with perfmon but since my application run on several machines I need a tool (open source ?) ...
2
votes
3answers
111 views
How can I keep track of how many calls I make to other 3rd party API's using .NET?
In a number of our web applications, we make calls to 3rd part API's like Twitter, etc. Nothing new there.
What we would like to do is to grab some statistics about our website usage -> how many ...
2
votes
0answers
850 views
GetProcessesByName() Throws Process performance counter is disabled
We had an application that uses Process.GetProcessesByName() but it is failing only on one user PC with the following error Process performance counter is disabled
I searched the registry for the ...
2
votes
2answers
584 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.
...
2
votes
1answer
872 views
How to read “.NET Data Provider for SqlServer” performance counters from MS Test?
How do I read from the performance counter "NumberOfActiveConnections" of the category ".NET Data Provider for SqlServer" from a unit test in MS Test?
I'm trying the following but it seems like I get ...
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
2answers
57 views
ServiceModelOperation counters do not show up
We have number of WCF services running on Windows 2008, IIS7, .NET Framework 4.0 (Amazon EC2).
We can see the counters available in ServiceModelService 4.0.0.0
We are interested in more granular ...
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
112 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
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 ...
1
vote
2answers
308 views
Adding performance counters via my ASP.NET code?
I'm trying to add some performance counters to my asp.net website. Now, I know how to increment/decrement some custom counter I make .. but my problem is that if I get my ASP.NET website to create ...
1
vote
1answer
753 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 ...
1
vote
2answers
835 views
Can ASP.NET Impersonate a user to Delete a Performance Counter Category?
I believe that I have successfully impersonated my own user account while running an ASP.NET page on my local machine.
Using the method described here, I have successfully changed the ...
0
votes
0answers
12 views
IOS Instruments Activity Profile / Trace “global” Counter Clearing
When running a profile using an IOS Device, the profiler / instruments has some counters that are "global" or "since reboot" like the graph that displays CPU TIME in the Activity Template.
Is there ...
0
votes
0answers
62 views
How to run an ARM11 PMU test on Android?
I found this simple PMU test example for ARM11 family core:
// Example PMU test program for ARM11 family core
//
// This example code is provided "as is", with out warranty
// or support entitlement. ...
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
92 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
83 views
oracle requests counters
I am using IIS counters to monitor "bussiness" of IIS. Specially I like 2 of them:
Current Anonymous Users (The number of users who currently have an anonymous request pending with the WWW service. ...
0
votes
1answer
156 views
Using RegQueryValueEx and HKEY_PERFORMANCE_COUNTER to Get "Disk Bytes/sec%
I've looked for examples and documentation, but I still can't figure this out...
How do you use RegQueryValueEx (not the PdhXxx functions) to query for something like Disk Bytes/sec?
I've tried the ...
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 ...
0
votes
1answer
500 views
Perfmon can't create data collector set on Windows 7 x64
I'm trying to create a data collector set using Perfmon. When I right click 'New -> Data Collector Set' in the User Defined folder, I see the wizard dialog appear. However, the 'Next' and 'Finish' ...
0
votes
1answer
172 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 ...
0
votes
1answer
331 views
ASP.NET performance counter logging, reporting tool
I have been looking for a solution to allow us to monitor our web servers performance counters over an asp.net website.
Is there an existing tool that I can make use of to accomplish this or will I ...
0
votes
1answer
188 views
performance counter events associated with false sharing
I am looking at the performance of OpenMP program, specifically cache and memory performance.
I have found guidelines while back ago how to analyze performance with Vtune that mentioned which counters ...
0
votes
3answers
582 views
Monitoring dashboard for IIS and SQL Server
We have developed a .NET web application that uses SQL Server as a backend. Now we would like to provide a monitoring dashboard app for the tech support team. The idea is that this monitoring app will ...
0
votes
1answer
457 views
ASP.NET and the Output Cache - how can see if it's working?
Problem: I've got an ASP.NET website and i don't believe that my code is getting OutputCached correctly. I'm using IIS7 performance counters to show me the hits or misses a second.
i've got a ...