I'm looking for a way to track how long it took for a page to be generated by the server. I know I can use Trace to track this but I need a way to display this per page.
Its ASP.Net MVC 2
|
I'm looking for a way to track how long it took for a page to be generated by the server. I know I can use Trace to track this but I need a way to display this per page. Its ASP.Net MVC 2
| |||
|
feedback
|
|
Yep the Derin Suggestion is the standard Way to do it in an ASP.NEt application, i would just suggest add an if so it does not interfere with non-HTML responses: EDIT: added complete implementation
you can also add some style to it... And remember to register your Module in WebConfig inside httpModules Section:
For a Complete Reference about this check the Pro ASP.NET MVC Framework by Steven Sanderson - Chapter 15 - Performance, Monitoring Page Generation Times. EDIT:(comment @Pino)
Here is the example for my project:
| |||||||||||
feedback
|
|
You can implement it like a ActionFilterAttribute
Decorate every controller or action-method with it and voila, it spit outs the text in debug. EDIT: If you want to print it on the page you could add this snippet to the OnActionExecuted method
Now you have the executiontime saved in ViewData and can access it in the page.. I usually put it in the masterpage like this
| |||||||||||||||||
feedback
|
|
It will depend on where you want to include this information. For example you could write an http handler that will display the render time after the
If you want to display render time somewhere in the middle of the html page then this render time will not account for the total page render time. | |||||||
feedback
|