Tagged Questions
10
votes
1answer
229 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 ...
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
1answer
206 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 ...
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
474 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
153 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
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
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
36 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
1answer
237 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
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
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
0answers
755 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 ...
0
votes
0answers
20 views
relog performance counters (perfmon) data from DB to blg or csv format
I have the performance counters collection the data and saving it to the DB.
Can I use the relog cmd (or any other way) to transfer the data in the DB to a binary or csv format?
Can I use something ...
0
votes
1answer
19 views
access performance monitor object
I have in my machine a performance object that it not a default but one of the dev here create it .
this performance object collect some information of one of our process.( not the regular counter ...
0
votes
0answers
58 views
Polling interval of Perfmon
It seems the minimum polling interval of Perfmon is 1 second. Is there a way to set interval to fractional second? If not, is there another tool can provide this capability?
0
votes
0answers
280 views
Can “Perfmon” utility gets the Performance data of a remote system which is part of a different domain
Can we use Windows "Perfmon" utility to get the Performance data of a remote machine (Windows 2008 R2) which is part of some domain.
The machine (Windows 7/Windows 2008 R2) from where we are running ...
0
votes
0answers
349 views
How to get Hyper-V's individual VM (guest OS) specific performance data
I am working on a small project revolving around Hyper-V performance monitoring.
Primarily I am interested in collecting a few routine performance data for individual VMs (say VM1, VM2) on the ...
0
votes
1answer
903 views
Log memory usage of application pool using perfmon
I am trying to audit memory usage of applications using perfmon. The application pool processes in perfmon by default looks like w3wp.exe #1, w3wp.exe #2...
Microsoft has a KB article ...
0
votes
1answer
109 views
How to interpret Papi output
I have collected data of Number of L2 cache misses using PAPI. I had run an MPI application with 4 threads (mpirun -np 4) and each thread reads the cache misses in L2. Each thread outputs data for ...
0
votes
0answers
247 views
Using Perfmon with MySQL Connector/NET
I am trying to diagnose repeated lock wait timeouts from my ASP.NET app to MySQL 5.1. I'm using MySQL Connector/NET 6.2.3.
I don't see anything MySQL-related in Perfmon's Performance Object dropdown ...
0
votes
2answers
340 views
Does windows have performance counters to measure statistics of a dialup connection?
Does windows have performance counters to measure statistics of a dialup connection? Opening up Perfmon I can see that it has a performance counter called "Network Interfaces" which can be used to ...
0
votes
2answers
458 views
Performance Counter Logs - Migrating lots of them from Win 2000 to Win 2003
I have a bunch of performance counter logs setup on a Windows 2000 machine that I would like to move lock, stock and barrel to a Win 2003 machine on the same network.
I can't see a way to export that ...
0
votes
3answers
4k views
Missing processor/memory counters in the Windows XP Performance Monitor application (perfmon)
Perfmon is a Windows utility that helps the developer to find bottlenecks in his applications, by measuring system counters.
I was reading a perfmon tutorial and from this list of essential counters ...