I work on an internal corporate system that has a web front-end using Tomcat.
- How can I monitor the rendering time of specific pages in a browser (IE6)?
- I would like to be able to record the results in a log file (separate log file or the Tomcat access log).
Ideally, I need to monitor the rendering on the clients accessing the pages.
In case a browser has JavaScript enabled one of the things you could do is to write an inline script and send it first thing in your HTML. The script would do two things:
You’d need to make sure that the page doesn’t override onload later in the code, but adds to the event handlers list instead.