I was wondering if anybody could tell me how to tell when IIS last recompiled? We have a fairly large website which recompiles from time to time if somebody pushes app_code files up etc. We also have minor issues with our webservers which cause IIS to reboot the app pool which again I believe forces a recompile. It would be beneficial to us to be able to tell when IIS last recompiled a given site.

Are there any performance counters etc that have this information?

Thanks David

link|improve this question

25% accept rate
feedback

2 Answers

up vote 1 down vote accepted

If you follow this post to analyze ETW trace, you will see when the last compilation occured. As a typical troubleshooting approach, you can use it to find out the cause, but don't leave it running for ever, as it can hurt performance.

http://blogs.msdn.com/b/tess/archive/2008/11/06/troubleshooting-appdomain-restarts-and-other-issues-with-etw-tracing.aspx

link|improve this answer
feedback

You can use ASP.NET Health Monitoring to notify you when the application pool restarts. Use ETW trace (see the other answer) to debug it further.

See this post on how to setup healthMonitoring (it's at the end of the article) or the official documention on MSDN.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.