The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Archive::Har::Page::PageTimings - Represents detailed timing of page within 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 $page ($har->pages()) {
        my $timings = $page->pageTimings();
        $timings->comment("Something interesting here");
        print "onContentLoad for " . $page->title() . ": " . $timings->on_content_load() . "\n";
        print "onLoad for " . $page->title() . ": " . $timings->on_load() . "\n";
        print "Comment for " . $page->title() . ": " . $timings->comment() . "\n";
    }

DESCRIPTION

This Module is intended to provide an interface to create/read/update PageTimings objects in HTTP Archive (HAR) files.

SUBROUTINES/METHODS

new

returns a new PageTimings object

on_content_load

returns the number of milliseconds since $har->page()->started_date_time() that the content of the page loaded or undef if the timing does not apply

on_load

returns the number of milliseconds since $har->page()->started_date_time() that the page loaded or undef if the timing does not apply

comment

returns the comment about the page timing

DIAGNOSTICS

on_content_load must be a positive number or -1

This field is measured as a number of milliseconds

on_load must be a positive number or -1

This field is measured as a number of milliseconds

%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::Page::PageTimings requires no configuration files or environment variables.

DEPENDENCIES

Archive::Har::Page::PageTimings 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.