Tagged Questions
The perfmon tag has no wiki summary.
15
votes
7answers
2k views
Why can't perfmon see instances of my custom performance counter?
I'm creating some custom performance counters for an application. I wrote a simple C# tool to create the categories and counters. For example, the code snippet below is basically what I'm running. ...
10
votes
1answer
224 views
How to measure memory usage for a Live ASP.NET MVC web application?
So right off the bat, not sure if this question is better suited for another StackExchange site.
I've got an ASP.NET MVC 3 web application running on Windows Server 2008 and IIS 7.5
Site runs fine ...
6
votes
2answers
864 views
Perfmon .blg file specification / parsing library
Where can I find a detailed, low-level spec for the Perfmon binary .blg file format? Or even better, has anyone written a low level, open source library (preferably in C, but any language would do) ...
5
votes
1answer
4k 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 ...
5
votes
5answers
3k views
Java app performance counters viewed in Perfmon
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?
4
votes
3answers
525 views
How to programatically log PerformanceCounter
I understand that using Perfmon.msc you can create a custom performance counter and by using counter log, you can write the counter value to a text file.
I also understand I can also use this ...
4
votes
4answers
679 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();
...
4
votes
2answers
3k 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 ...
4
votes
2answers
6k 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?
3
votes
1answer
205 views
What do ASP.NET performance counters mean?
I'm trying to get a better handle on how threads work in ASP.NET, so I have a test site with a few pages, and I have a test WinForms client that creates 40 roughly concurrent requests to the test ...
3
votes
2answers
112 views
“Errors During Preprocessing” is non-zero in ASP.NET perfmon counters
While testing an ASP.NET application with perfmon, we find that the following field is non-zero:
ASP.NET Apps v2.0.50727 > Errors During Preprocessing
Documentation says that this field is "The ...
3
votes
2answers
2k 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.
3
votes
4answers
842 views
How can I use Performance Counter in w2k8
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.
Same ...
2
votes
4answers
64 views
What sort of GUI controls are used in Windows Resource Monitor?
I am new to GUI programming in Windows.
The Windows Resource Monitor (perfmon.exe /res) has four bars (CPU/Disk/Network/Memory) that have gradient backgrounds, as well as charts on the right for ...
2
votes
1answer
90 views
Reading Perfmon Counters for “.NET CLR Exceptions” Category
I am trying to read perfmon counters for category ".NET CLR Exceptions". Below is code for same. What I am seeing is looks like different data being shown in Windows Perfmon counter and console ...
2
votes
1answer
211 views
Selecting the correct AppPool in PerfMon instances
I have a webserver with six App Pools. When I want to add counters in PerfMon for a specific ASP.NET application, the available instances have very different names.
For example, I have an App Pool ...
2
votes
1answer
470 views
Issues remoting to perfmon
Hey all,
I'm having trouble with PerfMon on one system out of fifteen in a development environment. Accessing it from the local machine is fine but connecting to it remotely throws a "Cannot connect" ...
2
votes
1answer
152 views
Web application Load Tests: What counters to look at?
During a stress/load test of a ASP.NET app hosted in IIS, what should I be monitoring on the app server?
For example, the built in utility performance monitor in windows has a huge list of counters ...
2
votes
1answer
153 views
explanation of ASP.NET Apps v1.1.4322 Anonymous Requests object in permon
Can someone please tell me more about performance monitor object
ASP.NET Apps v1.1.4322 Anonymous Requests - defined as The number of requests that use anonymous authentication.
Running Windows ...
2
votes
1answer
330 views
Are perfmon performance counters based on the same thing “under the hood” as the ETW events used by xperf?
I have recently been becoming acquainted with perfmon and with xperf. Perfmon uses performance counters and xperf uses ETW (event tracing for windows). Perfmon has objects that provide data, whereas ...
2
votes
1answer
101 views
What's the working paradigm of Windows Performance Counter?
I have just finished reading this article about how to create a performance counter and update the counter's value. But I am a little confused about the working paradigm of the Windows Performance ...
2
votes
2answers
332 views
Performance Counter?
I would like to monitor the performance of the Memory (RAM) and Physical Disk, what are all the counters in Perfmon that I have to monitor?
2
votes
1answer
590 views
Meaning of WCF counters in perfmon.exe
I would like to use PerfMon.exe to monitor the calls to a WCF service, but I don't understand which counter I have to use. I tried Calls and Instance but the result is always 0.
Could you explain me ...
2
votes
1answer
1k views
Controlling PerfMon logging on multiple systems
I need to use PerfMon to collect data from several machines, and I need to be able to turn collection on/off at certain times. I've got all the data points configured on each machine; I just need to ...
2
votes
1answer
1k 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 ...
2
votes
6answers
3k 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 ...
2
votes
3answers
3k views
What is the best way to interpret Perfmon analysis into application specific observations/data?
Many of us have used Perfmon tool to do performance analysis. Especially with .Net counters, but there are so many variables going on in Perfmon, that it always becomes hard to interpret Perfmon ...
1
vote
1answer
29 views
How to monitor WCF Service up time using Performance Counters?
I'd like to know what is the up-time of WCF service using Performance Counters.
Is there a specific counter for that? Or is there a way to get this information from other counters?
1
vote
1answer
34 views
Perfmon, how to combine Combine FirstValueA and FirstValueB?
I am using performance monitor to collect the counters data and save it to the DB. Here is the DB structure defined in the msdn ...
1
vote
0answers
59 views
Custom SQL Server performance counters
I need to create several counters for a system health check and monitoring. Since there are numerous tools for logging, reporting and alerting Windows Perfmon data, I am looking to publish that data ...
1
vote
3answers
119 views
C# memory leak?? Gen 0 and 1 increasing constantly in perfmon - What does it mean?
I am using C# 2.0 for a multi-threaded application that receives atleast thousand callbacks per second from an unmanaged dll and periodically send messages out of socket. GUI remains on main thread.
...
1
vote
1answer
104 views
WCF Message Security - PerCall
We have a website load balanced across two servers that calls into a WCF wsHttp service hosted on a single IIS7 application server.
Last week, the website was launched and we hit performance ...
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
232 views
custom performance counter in c# / perfmon
Hi I am trying to to create a custom performance counter for use in perfmon. The following code works pretty well, however I have one problem..
With this solution I have a timer updating the value of ...
1
vote
0answers
63 views
Perfmon counter for web services request queued
is there any performance counter for web service which gives the number of web service request queue. there is one for Asp request queue is there one for web services? These are not wcf web services ...
1
vote
4answers
160 views
Determining which SQL Server database is spiking the CPU
We are running SQL Server 2008 with currently around 50 databases of varying size and workload. Occasionally SQL Server spikes the CPU completely for about a minute, after which it drops to normal ...
1
vote
0answers
128 views
VB.NET Creation of Perfomance Counter Data on a Remote Server
I'm looking for a way to create a Binary Circular log file with a specific set of counters on a remote system.
I know this can be done using logman and psexec but I was hoping to find a cleaner ...
1
vote
1answer
135 views
1
vote
0answers
135 views
Problem: .NET Performance counter data goes missing after a short period
I am trying to log the .Net memory performance counters but the logs stop recording data after a bit. I am doing this for a bunch of servers and all of them stop working at different points in time. ...
1
vote
3answers
678 views
Get Total CPU # via WMI or T-SQL
I don't want the list of all process, just a total percentage like you would see in windows taskmanager.
I will be using this information via coldfusion, but i am having all kinds of problems just ...
1
vote
1answer
169 views
PerfMon web interface - does it exist?
I realise that it is fairly easy to query performance counters in code and display these on an ASPX page but does anyone know if a product already exists which is basically a web version of PerfMon - ...
1
vote
0answers
283 views
ColdFusion 9 / Win Server 2008 - Incorrect Perfmon Values
We've recently upgraded from CF 8 Enterprise to CF 9 Enterprise with hotfix 1.
What we have noticed is that some CF 9 counters accessed via perfmon are now giving crazy values.
I recall something ...
1
vote
0answers
549 views
Monitoring process-level performance counters in Windows Perfmon
I am sure everybody has bumped into this. As you scale a web server that uses multiple application pools, it's valuable to collect performance counters for each application pool 24x7. The only problem ...
1
vote
2answers
109 views
How can an improvement to the query cache be tracked?
I am parameterizing my web app's ad hoc sql. As a result, I expect the query plan cache to reduce in size and have a higher hit ratio. Perhaps even other important metrics will be improved.
Could I ...
1
vote
1answer
317 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
688 views
Finding perfmon counter id via winreg
I have an app that collects Perfmon counter values through the API exposed in winreg.h - in order to collect Perfmon counter values I must make a call to RegQueryValueExW passing in the id of the ...
1
vote
0answers
754 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
485 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
514 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
911 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 ...