Да, предложение Derin - это стандартный способ сделать это в приложении ASP.NEt, я бы просто предложил добавить if, чтобы он не мешал ответам, отличным от HTML:
РЕДАКТИРОВАТЬ: добавлена полная реализация
public class PerformanceMonitorModule : IHttpModule
{
public void Init(HttpApplication context)
{
context.PreRequestHandlerExecute += delegate(object sender, EventArgs e)
{
//Set Page Timer Star
HttpContext requestContext = ((HttpApplication)sender).Context;
Stopwatch timer = new Stopwatch();
requestContext.Items["Timer"] = timer;
timer.Start();
};
context.PostRequestHandlerExecute += delegate(object sender, EventArgs e)
{
HttpContext httpContext = ((HttpApplication)sender).Context;
HttpResponse response = httpContext.Response;
Stopwatch timer = (Stopwatch)httpContext.Items["Timer"];
timer.Stop();
// Don't interfere with non-HTML responses
if (response.ContentType == "text/html")
{
double seconds = (double)timer.ElapsedTicks / Stopwatch.Frequency;
string result_time = string.Format("{0:F4} sec ", seconds);
RenderQueriesToResponse(response,result_time);
}
};
}
void RenderQueriesToResponse(HttpResponse response, string result_time)
{
response.Write("<div style=\"margin: 5px; background-color: #FFFF00\"");
response.Write(string.Format("<b>Page Generated in "+ result_time));
response.Write("</div>");
}
public void Dispose() { /* Not needed */ }
}
Вы также можете добавить стиль ...
И не забудьте зарегистрировать свой Модуль в WebConfig в разделе httpModules:
<add name="Name" type="namespace, dll"/>
Полный справочник об этой проверке Стивена Сандерсона (Steven Sanderson) - Pro ASP.NET MVC Framework - Глава 15 - Производительность, мониторинг времени генерации страниц.
РЕДАКТИРОВАТЬ: (комментарий @Pino)
Вот пример для моего проекта:
альтернативный текст http://www.diarioplus.com/files/pictures/example_performance.JPG