Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Performance monitoring for ASP.NET MVC2?

I would like to know if there is an equivalent of "New Relic RPM" or "JavaMelody" for ASP.NET MVC2 ? I can't find anything about monitoring on ASP.NET MVC2...

Any idea ? How do you monitor the performances of you ASP.NET MVC2 applications ?

http://www.newrelic.com/

http://code.google.com/p/javamelody/

Thank you

like image 279
Kedare Avatar asked Nov 05 '22 08:11

Kedare


1 Answers

For real world uptime/performance monitoring, we use outside services such as BrowserMob. For internals, an ASP.NET MVC app is just a ASP.NET app as far as IIS is concerned, so your normal ASP.NET/IIS monitoring tools do just fine.

By normal tools I'd start with the performance counters for IIS and ASP.NET. This page is perhaps a good place to start.

I should add the underlying point here is, unlike ruby and some java stuff, you are building on a very solid, instrumented platform here. There is lots of data there, and tools to make it more understandable.

like image 200
Wyatt Barnett Avatar answered Nov 09 '22 14:11

Wyatt Barnett