views:

1546

answers:

1

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 other wise they do not happen. My hunch is that my app pool is restarting, but I want to get to the bottom as to why this is occurring.

+3  A: 

Here is the MSDN listing of the important perfmon counters for IIS.

If your site is restarting, you'll also want events from the Application and Security logs relating to IIS.

You can also use IISState to generate a dumpfile if/when a crash does happen.

Dave Swersky