So I have an ASP.Net web application that runs under mono/xsp4 (in development, anyway). How can I profile my web app to see what is causing it to be slow?
Asked
Active
Viewed 390 times
1 Answers
0
Regardless of your specific environment and programming language, if you have "standard" web logs which contain:
- Accessed URLs and
- Elapsed response times on them
you may be able to use the generic & platform/language independent approach outlined in this SO question I posted yesterday:
Profiling a multi-tiered, distributed, web application (server side)
-
1I ended up using the Mono Profiler attached to xsp: http://www.mono-project.com/Profiler – Earlz Mar 04 '13 at 17:27