Tagged Questions
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. ...
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
680 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();
...
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
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
1answer
92 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
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
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
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
544 views
Memory consumption details of a .NET application
I am debugging some memory problems related to a managed application that we have. I was monitoring the application using perfmon when I got confused about the memory difference between the .NET Bytes ...
0
votes
0answers
71 views
Manipulate the Performance Monitor Programmatically
Is it possible to programmatically add existing performance counters to the performance monitor (perfmon.exe) and display them as a report view? if so, how can it be done in C#?
0
votes
0answers
39 views
Impact of Enabling ADO.NET Off-By-Default Counters
In ADO.NET some of the performance counters are Off-By-Default and can be enabled with the following configuration (Reference):
<system.diagnostics>
<switches>
<add ...