DBI::ProfileDumper - profile DBI usage and output data to a file
DBI_PROFILE=2/DBI::ProfileDumper program.pl
Then analyze the generated file (dbi.prof) with dbiprof:
dbiprof
You can also activate DBI::ProfileDumper from within your code:
use DBI;
# profile with default path (2) and output file (dbi.prof) $dbh->{Profile} = "2/DBI::ProfileDumper";
# same thing, spelled out $dbh->{Profile} = "2/DBI::ProfileDumper/File:dbi.prof";
# another way to say it use DBI::Profile; $dbh->{Profile} = DBI::ProfileDumper->new( Path => [ '!Statement' ] File => 'dbi.prof' );
# using a custom path $dbh->{Profile} = DBI::ProfileDumper->new( Path => [ "foo", "bar" ], File => 'dbi.prof' );
NOTE: For Apache/mod_perl applications, use DBI::ProfileDumper::Apache.
$dbh->{Profile} = "1/DBI::ProfileDumper";
This will write out profile data by statement into a file called dbi.prof. If you want to modify either of these properties, you can construct the DBI::ProfileDumper object yourself:
use DBI::Profile; $dbh->{Profile} = DBI::ProfileDumper->new( Path => [ '!Statement' ] File => 'dbi.prof' );
The "Path" option takes the same values as in DBI::Profile. The "File" option gives the name of the file where results will be collected. If it already exists it will be overwritten.
You can also activate this module by setting the DBI_PROFILE environment variable:
$ENV{DBI_PROFILE} = "!Statement/DBI::ProfileDumper";
This will cause all DBI handles to share the same profiling object.
my $profile = $dbh->{Profile};
DBI::ProfileDumper 1.0 Path = [ '!Statement', '!MethodName' ] Program = t/42profile_data.t
+ 1 SELECT name FROM users WHERE id = ? + 2 prepare = 1 0.0312958955764771 0.000490069389343262 0.000176072120666504 0.00140702724456787 1023115819.83019 1023115819.86576 + 2 execute 1 0.0312958955764771 0.000490069389343262 0.000176072120666504 0.00140702724456787 1023115819.83019 1023115819.86576 + 2 fetchrow_hashref = 1 0.0312958955764771 0.000490069389343262 0.000176072120666504 0.00140702724456787 1023115819.83019 1023115819.86576 + 1 UPDATE users SET name = ? WHERE id = ? + 2 prepare = 1 0.0312958955764771 0.000490069389343262 0.000176072120666504 0.00140702724456787 1023115819.83019 1023115819.86576 + 2 execute = 1 0.0312958955764771 0.000490069389343262 0.000176072120666504 0.00140702724456787 1023115819.83019 1023115819.86576
The lines beginning with "+" signs signify keys. The number after the "+" sign shows the nesting level of the key. Lines beginning with "=" are the actual profile data, in the same order as in DBI::Profile.
Note that the same path may be present multiple times in the data file since "format()" may be called more than once. When read by DBI::ProfileData the data points will be merged to produce a single data set for each distinct path.
The key strings are transformed in three ways. First, all backslashes are doubled. Then all newlines and carriage-returns are transformed into "\n" and "\r" respectively. Finally, any NULL bytes ("\0") are entirely removed. When DBI::ProfileData reads the file the first two transformations will be reversed, but NULL bytes will not be restored.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl 5 itself.
Закладки на сайте Проследить за страницей |
Created 1996-2024 by Maxim Chirkov Добавить, Поддержать, Вебмастеру |