NAME
Archive::Har::Entry - Represents a single http request/response pair inside the HTTP Archive
VERSION
Version 0.03
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()) {
print "PageRef: " . $entry->pageref() . "\n";
print "DateTime: " . $entry->startedDateTime() . "\n";
print "Total Elasped Time: " . $entry->time() . "\n";
my $request = $entry->request();
my $response = $entry->response();
my $cache = $entry->cache();
my $timing = $entry->pageTimings();
print "Server IP Address: " . $entry->serviceIPAddress() . "\n";
print "Connection: " . $entry->connection() . "\n";
print "Comment: " . $entry->comment() . "\n";
}
SUBROUTINES/METHODS
pageref
returns the reference to the parent page. This may be null.
startedDateTime
returns the date and time stamp for the beginning of the request (ISO 8601 format)
time
returns the total elapsed time of the request in milliseconds. It is the sum of all the timings available in the timings object (not including undefined values).
request
returns the request object
response
returns the response object
cache
returns the cache object
timings
returns the entry timings object
serverIPAddress
returns the IP address of the server that was connected (result of DNS resolution)
connection
returns the unique ID of the parent TCP/IP connection. This can be the client port number.
comment
returns the comment about the Entry