NAME
Archive::Har::Entry::Timings - Represents the timings for the individual phases during a request/response pair inside the HTTP Archive
VERSION
Version '0.21'
SYNOPSIS
use Archive::Har();
my $http_archive_string = '"log": { "version": "1.1", .... ';
my $har = Archive::Har->new();
$har->string($http_archive_string);
foreach my $entry ($har->entries()) {
my $timings = $entry->timings();
$timings->comment("Something interesting here");
print "Blocked: " . $timings->blocked() . "\n";
print "DNS: " . $timings->dns() . "\n";
print "Connect: " . $timings->connect() . "\n";
print "Send: " . $timings->send() . "\n";
print "Wait: " . $timings->wait() . "\n";
print "Receive: " . $timings->receive() . "\n";
print "Ssl: " . $timings->ssl() . "\n";
print "Comment: " . $timings->comment() . "\n";
}
DESCRIPTION
This Module is intended to provide an interface to create/read/update Timings objects in HTTP Archive (HAR) files.
SUBROUTINES/METHODS
new
returns a new Timings object
blocked
returns the time in milliseconds spent waiting for a network connection. The function will return undef if it does not apply to the current request
dns
returns the time in milliseconds spent in DNS resolution of the host name. The function will return undef if it does not apply to the current request
connect
returns the time in milliseconds spent making the TCP connection. The function will return undef if it does not apply to the current request
send
returns the time in milliseconds spent sending the request to the server.
wait
returns the time in milliseconds spent waiting for a response from the server.
receive
returns the time in milliseconds spent reading the response from the server.
ssl
returns the time in milliseconds spent negotiating the SSL/TLS session. The function will return undef if it does not apply to the current request
comment
returns the comment about the page timings
DIAGNOSTICS
%s is not specified in the HAR 1.2 spec and does not start with an underscore
-
The HAR 1.2 specification allows undocumented fields, but they must start with an underscore
CONFIGURATION AND ENVIRONMENT
Archive::Har::Entry::Timings requires no configuration files or environment variables.
DEPENDENCIES
Archive::Har::Entry::Timings requires no additional non-core Perl modules
INCOMPATIBILITIES
None reported
AUTHOR
David Dick, <ddick at cpan.org>
BUGS AND LIMITATIONS
Please report any bugs or feature requests to bug-archive-har at rt.cpan.org
, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Archive-Har. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
LICENSE AND COPYRIGHT
Copyright 2015 David Dick.
This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.
See http://dev.perl.org/licenses/ for more information.