Win32::ASP::Profile - provides quick and dirty profiling for web performance testing |
Win32::ASP::Profile - provides quick and dirty profiling for web performance testing
use Win32::ASP::Profile;
Win32::ASP::Profile
outputs rudimentary profiling information at the end of each web page
through the use of BEGIN
and END
. The BEGIN
subroutine initializes some information when
the web page is first created and the END
subroutine computes the time it took for the web page
to be create and appends that to the end of the web page.
To use, simply include the line
use Win32::ASP::Profile;
on any web page you want to profile. If you are using a default *.INC
file, you can stick that
line in the include file and thus garner profiling information on all your ASP pages.
Win32::ASP::Profile - provides quick and dirty profiling for web performance testing |