2

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?

Earlz
  • 62,085
  • 98
  • 303
  • 499

1 Answers1

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)

Community
  • 1
  • 1
arielf
  • 5,802
  • 1
  • 36
  • 48
  • 1
    I ended up using the Mono Profiler attached to xsp: http://www.mono-project.com/Profiler – Earlz Mar 04 '13 at 17:27