Skip to content

Instantly share code, notes, and snippets.

@tsee
Created July 17, 2011 18:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsee/1087899 to your computer and use it in GitHub Desktop.
Save tsee/1087899 to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use Data::Dumper;
use List::Util qw(min max);
my $code = do {local $/; <DATA>};
my %data_hash = eval $code;
my $data = $data_hash{SessionVisitor};
# simple preprocessing step, so we can easily plugin different source data
my @records;
my $time_start = 1e99;
for (@$data) {
push @records, {
start_epoch => $_->{start_epoch},
duration => $_->{duration},
records => $_->{records}
};
# Find lowest x-value to plot
$time_start = $records[-1]->{start_epoch} if $records[-1]->{start_epoch} < $time_start;
#last if @records == 10;
}
#my $time_end = time(); # only makes sense for "current" data...
my $time_end = max(map $_->{start_epoch}+($_->{duration}||1), @records);
my $xy = make_plot(\@records, $time_start-1, $time_end);
#warn Dumper $xy;
# the following is just about plotting
# hacky...
use Chart::Gnuplot;
# Okay [\@x, \@y] might have been a more convenient return value...
my @x = map $_->[0], @$xy;
my @y = map $_->[1], @$xy;
my $c = Chart::Gnuplot->new(
output => 't.png',
title => 'blah',
bg => 'white',
);
my $ds = Chart::Gnuplot::DataSet->new(
xdata => \@x,
ydata => \@y,
style => "lines",
);
$c->plot2d($ds);
# This is the actual algorithm
sub make_plot {
my $data = shift();
my $start_time = shift;
my $end_time = shift;
my @jumps;
foreach my $datum (@$data) {
my $rec_per_time = $datum->{records} / ($datum->{duration} || 1);
my $start = $datum->{start_epoch};
my $end = $start + $datum->{duration};
$end++ if $start == $end; # for 0-time periods...
push @jumps, {when => $start, diff => $rec_per_time},
{when => $end, diff => -$rec_per_time};
}
@jumps = sort { $a->{when} <=> $b->{when} } @jumps;
my $y = 0;
while (@jumps && $jumps[0]->{when} < $start_time) {
$y += shift(@jumps)->{diff};
}
# start collecting points for plotting
my @plot_coords; # to contain arrayrefs of [$x, $y]
push @plot_coords, [$start_time, $y]; # start point
while (@jumps) {
my $j = shift @jumps;
last if $j->{when} > $end_time;
push @plot_coords, [$j->{when}, $y];
$y += $j->{diff};
push @plot_coords, [$j->{when}, $y];
}
push @plot_coords, [$end_time, $y];
return \@plot_coords;
}
__DATA__
'SessionVisitor' => [
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 3,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925098,
'dc' => '1',
'records' => '29604',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '493.4',
'rps_duration' => 29604,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => '1',
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925099,
'dc' => '1',
'records' => '29604',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '493.4',
'rps_duration' => 29604,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 1,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925100,
'dc' => '1',
'records' => '30464',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '507.73',
'rps_duration' => 30464,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 3,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925100,
'dc' => '1',
'records' => '30464',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '507.73',
'rps_duration' => 30464,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 2,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925101,
'dc' => '1',
'records' => '31233',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '520.55',
'rps_duration' => 31233,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 4,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925101,
'dc' => '1',
'records' => '31233',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '520.55',
'rps_duration' => 31233,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 2,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925102,
'dc' => '1',
'records' => '31663',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '527.72',
'rps_duration' => 31663,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 4,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925102,
'dc' => '1',
'records' => '32460',
'start_time' => '2011-07-17 19:51:00',
'duration' => '0',
'rps_period_length' => 541,
'rps_duration' => 32460,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 3,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925103,
'dc' => '1',
'records' => '32829',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '547.15',
'rps_duration' => 32829,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 5,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925103,
'dc' => '1',
'records' => '33226',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '553.77',
'rps_duration' => 33226,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 8,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925103,
'dc' => '1',
'records' => '33993',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '566.55',
'rps_duration' => 33993,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 2,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925104,
'dc' => '1',
'records' => '33993',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '566.55',
'rps_duration' => 33993,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 1,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925105,
'dc' => '1',
'records' => '34397',
'start_time' => '2011-07-17 19:51:00',
'duration' => '2',
'rps_period_length' => '573.28',
'rps_duration' => '17198.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 9,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925105,
'dc' => '1',
'records' => '34750',
'start_time' => '2011-07-17 19:51:00',
'duration' => '2',
'rps_period_length' => '579.17',
'rps_duration' => 17375,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 11,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925105,
'dc' => '1',
'records' => '34750',
'start_time' => '2011-07-17 19:51:00',
'duration' => '2',
'rps_period_length' => '579.17',
'rps_duration' => 17375,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 13,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925105,
'dc' => '1',
'records' => '35874',
'start_time' => '2011-07-17 19:51:00',
'duration' => '1',
'rps_period_length' => '597.9',
'rps_duration' => 35874,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 3,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925106,
'dc' => '1',
'records' => '36232',
'start_time' => '2011-07-17 19:51:00',
'duration' => '2',
'rps_period_length' => '603.87',
'rps_duration' => 18116,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 5,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925106,
'dc' => '1',
'records' => '36540',
'start_time' => '2011-07-17 19:51:00',
'duration' => '2',
'rps_period_length' => 609,
'rps_duration' => 18270,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 7,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925106,
'dc' => '1',
'records' => '36540',
'start_time' => '2011-07-17 19:51:00',
'duration' => '2',
'rps_period_length' => 609,
'rps_duration' => 18270,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925060',
'package_id' => '23',
'until_epoch' => 1310925060,
'from_epoch' => 1310925000,
'ordinal' => 9,
'from_time' => '2011-07-17 19:50:00',
'script_id' => '1',
'epoch' => 1310925106,
'dc' => '1',
'records' => '36540',
'start_time' => '2011-07-17 19:51:00',
'duration' => '2',
'rps_period_length' => 609,
'rps_duration' => 18270,
'period_length' => 60,
'until_time' => '2011-07-17 19:51:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => '1',
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925161,
'dc' => '1',
'records' => '29518',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '491.97',
'rps_duration' => 14759,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 8,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925164,
'dc' => '1',
'records' => '30793',
'start_time' => '2011-07-17 19:52:00',
'duration' => '1',
'rps_period_length' => '513.22',
'rps_duration' => 30793,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 10,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925164,
'dc' => '1',
'records' => '30793',
'start_time' => '2011-07-17 19:52:00',
'duration' => '1',
'rps_period_length' => '513.22',
'rps_duration' => 30793,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 4,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925165,
'dc' => '1',
'records' => '30793',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '513.22',
'rps_duration' => '15396.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 6,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925165,
'dc' => '1',
'records' => '32415',
'start_time' => '2011-07-17 19:52:00',
'duration' => '1',
'rps_period_length' => '540.25',
'rps_duration' => 32415,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 1,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925166,
'dc' => '1',
'records' => '32415',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '540.25',
'rps_duration' => '16207.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 4,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925166,
'dc' => '1',
'records' => '32796',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '546.6',
'rps_duration' => 16398,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 7,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925166,
'dc' => '1',
'records' => '33203',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '553.38',
'rps_duration' => '16601.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 8,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925166,
'dc' => '1',
'records' => '33203',
'start_time' => '2011-07-17 19:52:00',
'duration' => '1',
'rps_period_length' => '553.38',
'rps_duration' => 33203,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 12,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925166,
'dc' => '1',
'records' => '33203',
'start_time' => '2011-07-17 19:52:00',
'duration' => '1',
'rps_period_length' => '553.38',
'rps_duration' => 33203,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 7,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925168,
'dc' => '1',
'records' => '34710',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '578.5',
'rps_duration' => 17355,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 9,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925168,
'dc' => '1',
'records' => '34710',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '578.5',
'rps_duration' => 17355,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 11,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925168,
'dc' => '1',
'records' => '34710',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '578.5',
'rps_duration' => 17355,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 1,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925169,
'dc' => '1',
'records' => '35137',
'start_time' => '2011-07-17 19:52:00',
'duration' => '3',
'rps_period_length' => '585.62',
'rps_duration' => '11712.33',
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 3,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925169,
'dc' => '1',
'records' => '36198',
'start_time' => '2011-07-17 19:52:00',
'duration' => '2',
'rps_period_length' => '603.3',
'rps_duration' => 18099,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 5,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925169,
'dc' => '1',
'records' => '35862',
'start_time' => '2011-07-17 19:52:00',
'duration' => '3',
'rps_period_length' => '597.7',
'rps_duration' => 11954,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 4,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925170,
'dc' => '1',
'records' => '36198',
'start_time' => '2011-07-17 19:52:00',
'duration' => '3',
'rps_period_length' => '603.3',
'rps_duration' => 12066,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 7,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925170,
'dc' => '1',
'records' => '36198',
'start_time' => '2011-07-17 19:52:00',
'duration' => '3',
'rps_period_length' => '603.3',
'rps_duration' => 12066,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 1,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925171,
'dc' => '1',
'records' => '36988',
'start_time' => '2011-07-17 19:52:00',
'duration' => '4',
'rps_period_length' => '616.47',
'rps_duration' => 9247,
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925120',
'package_id' => '23',
'until_epoch' => 1310925120,
'from_epoch' => 1310925060,
'ordinal' => 5,
'from_time' => '2011-07-17 19:51:00',
'script_id' => '1',
'epoch' => 1310925171,
'dc' => '1',
'records' => '36988',
'start_time' => '2011-07-17 19:52:00',
'duration' => '3',
'rps_period_length' => '616.47',
'rps_duration' => '12329.33',
'period_length' => 60,
'until_time' => '2011-07-17 19:52:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => '1',
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925218,
'dc' => '1',
'records' => '29667',
'start_time' => '2011-07-17 19:53:00',
'duration' => '1',
'rps_period_length' => '494.45',
'rps_duration' => 29667,
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 3,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925219,
'dc' => '1',
'records' => '31000',
'start_time' => '2011-07-17 19:53:00',
'duration' => '1',
'rps_period_length' => '516.67',
'rps_duration' => 31000,
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 6,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925219,
'dc' => '1',
'records' => '31000',
'start_time' => '2011-07-17 19:53:00',
'duration' => '1',
'rps_period_length' => '516.67',
'rps_duration' => 31000,
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => '2',
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925220,
'dc' => '1',
'records' => '31000',
'start_time' => '2011-07-17 19:53:00',
'duration' => '2',
'rps_period_length' => '516.67',
'rps_duration' => 15500,
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => '2',
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925221,
'dc' => '1',
'records' => '33114',
'start_time' => '2011-07-17 19:53:00',
'duration' => '1',
'rps_period_length' => '551.9',
'rps_duration' => 33114,
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => '3',
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925224,
'dc' => '1',
'records' => '34974',
'start_time' => '2011-07-17 19:53:00',
'duration' => '3',
'rps_period_length' => '582.9',
'rps_duration' => 11658,
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 4,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925225,
'dc' => '1',
'records' => '34974',
'start_time' => '2011-07-17 19:53:00',
'duration' => '3',
'rps_period_length' => '582.9',
'rps_duration' => 11658,
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 7,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925225,
'dc' => '1',
'records' => '34974',
'start_time' => '2011-07-17 19:53:00',
'duration' => '4',
'rps_period_length' => '582.9',
'rps_duration' => '8743.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 1,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925226,
'dc' => '1',
'records' => '34974',
'start_time' => '2011-07-17 19:53:00',
'duration' => '5',
'rps_period_length' => '582.9',
'rps_duration' => '6994.8',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 5,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925226,
'dc' => '1',
'records' => '35309',
'start_time' => '2011-07-17 19:53:00',
'duration' => '4',
'rps_period_length' => '588.48',
'rps_duration' => '8827.25',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 8,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925226,
'dc' => '1',
'records' => '34974',
'start_time' => '2011-07-17 19:53:00',
'duration' => '5',
'rps_period_length' => '582.9',
'rps_duration' => '6994.8',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 14,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925226,
'dc' => '1',
'records' => '35701',
'start_time' => '2011-07-17 19:53:00',
'duration' => '4',
'rps_period_length' => '595.02',
'rps_duration' => '8925.25',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => '3',
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925227,
'dc' => '1',
'records' => '36779',
'start_time' => '2011-07-17 19:53:00',
'duration' => '5',
'rps_period_length' => '612.98',
'rps_duration' => '7355.8',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 1,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925228,
'dc' => '1',
'records' => '36062',
'start_time' => '2011-07-17 19:53:00',
'duration' => '6',
'rps_period_length' => '601.03',
'rps_duration' => '6010.33',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 4,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925228,
'dc' => '1',
'records' => '34974',
'start_time' => '2011-07-17 19:53:00',
'duration' => '6',
'rps_period_length' => '582.9',
'rps_duration' => 5829,
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 7,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925228,
'dc' => '1',
'records' => '36779',
'start_time' => '2011-07-17 19:53:00',
'duration' => '6',
'rps_period_length' => '612.98',
'rps_duration' => '6129.83',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 12,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925228,
'dc' => '1',
'records' => '36779',
'start_time' => '2011-07-17 19:53:00',
'duration' => '6',
'rps_period_length' => '612.98',
'rps_duration' => '6129.83',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 1,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925229,
'dc' => '1',
'records' => '36779',
'start_time' => '2011-07-17 19:53:00',
'duration' => '7',
'rps_period_length' => '612.98',
'rps_duration' => '5254.14',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 5,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925229,
'dc' => '1',
'records' => '36779',
'start_time' => '2011-07-17 19:53:00',
'duration' => '7',
'rps_period_length' => '612.98',
'rps_duration' => '5254.14',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925180',
'package_id' => '23',
'until_epoch' => 1310925180,
'from_epoch' => 1310925120,
'ordinal' => 7,
'from_time' => '2011-07-17 19:52:00',
'script_id' => '1',
'epoch' => 1310925229,
'dc' => '1',
'records' => '37141',
'start_time' => '2011-07-17 19:53:00',
'duration' => '6',
'rps_period_length' => '619.02',
'rps_duration' => '6190.17',
'period_length' => 60,
'until_time' => '2011-07-17 19:53:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => '5',
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925280,
'dc' => '1',
'records' => '29564',
'start_time' => '2011-07-17 19:54:00',
'duration' => '1',
'rps_period_length' => '492.73',
'rps_duration' => 29564,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 2,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925284,
'dc' => '1',
'records' => '30480',
'start_time' => '2011-07-17 19:54:00',
'duration' => '2',
'rps_period_length' => 508,
'rps_duration' => 15240,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 4,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925284,
'dc' => '1',
'records' => '30943',
'start_time' => '2011-07-17 19:54:00',
'duration' => '1',
'rps_period_length' => '515.72',
'rps_duration' => 30943,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 4,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925285,
'dc' => '1',
'records' => '32150',
'start_time' => '2011-07-17 19:54:00',
'duration' => '2',
'rps_period_length' => '535.83',
'rps_duration' => 16075,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 6,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925285,
'dc' => '1',
'records' => '32150',
'start_time' => '2011-07-17 19:54:00',
'duration' => '2',
'rps_period_length' => '535.83',
'rps_duration' => 16075,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 8,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925285,
'dc' => '1',
'records' => '32150',
'start_time' => '2011-07-17 19:54:00',
'duration' => '2',
'rps_period_length' => '535.83',
'rps_duration' => 16075,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 11,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925285,
'dc' => '1',
'records' => '32150',
'start_time' => '2011-07-17 19:54:00',
'duration' => '1',
'rps_period_length' => '535.83',
'rps_duration' => 32150,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 1,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925286,
'dc' => '1',
'records' => '33792',
'start_time' => '2011-07-17 19:54:00',
'duration' => '1',
'rps_period_length' => '563.2',
'rps_duration' => 33792,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 3,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925286,
'dc' => '1',
'records' => '34503',
'start_time' => '2011-07-17 19:54:00',
'duration' => '1',
'rps_period_length' => '575.05',
'rps_duration' => 34503,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 4,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925287,
'dc' => '1',
'records' => '34503',
'start_time' => '2011-07-17 19:54:00',
'duration' => '2',
'rps_period_length' => '575.05',
'rps_duration' => '17251.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 2,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925288,
'dc' => '1',
'records' => '34866',
'start_time' => '2011-07-17 19:54:00',
'duration' => '3',
'rps_period_length' => '581.1',
'rps_duration' => 11622,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 5,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925288,
'dc' => '1',
'records' => '35285',
'start_time' => '2011-07-17 19:54:00',
'duration' => '2',
'rps_period_length' => '588.08',
'rps_duration' => '17642.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 3,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925289,
'dc' => '1',
'records' => '35285',
'start_time' => '2011-07-17 19:54:00',
'duration' => '4',
'rps_period_length' => '588.08',
'rps_duration' => '8821.25',
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 6,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925289,
'dc' => '1',
'records' => '34866',
'start_time' => '2011-07-17 19:54:00',
'duration' => '4',
'rps_period_length' => '581.1',
'rps_duration' => '8716.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 9,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925289,
'dc' => '1',
'records' => '34866',
'start_time' => '2011-07-17 19:54:00',
'duration' => '4',
'rps_period_length' => '581.1',
'rps_duration' => '8716.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 2,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925290,
'dc' => '1',
'records' => '36449',
'start_time' => '2011-07-17 19:54:00',
'duration' => '4',
'rps_period_length' => '607.48',
'rps_duration' => '9112.25',
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 1,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925291,
'dc' => '1',
'records' => '36840',
'start_time' => '2011-07-17 19:54:00',
'duration' => '4',
'rps_period_length' => 614,
'rps_duration' => 9210,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 5,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925291,
'dc' => '1',
'records' => '37191',
'start_time' => '2011-07-17 19:54:00',
'duration' => '4',
'rps_period_length' => '619.85',
'rps_duration' => '9297.75',
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 2,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925292,
'dc' => '1',
'records' => '36840',
'start_time' => '2011-07-17 19:54:00',
'duration' => '5',
'rps_period_length' => 614,
'rps_duration' => 7368,
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925240',
'package_id' => '23',
'until_epoch' => 1310925240,
'from_epoch' => 1310925180,
'ordinal' => 4,
'from_time' => '2011-07-17 19:53:00',
'script_id' => '1',
'epoch' => 1310925292,
'dc' => '1',
'records' => '37191',
'start_time' => '2011-07-17 19:54:00',
'duration' => '4',
'rps_period_length' => '619.85',
'rps_duration' => '9297.75',
'period_length' => 60,
'until_time' => '2011-07-17 19:54:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => '4',
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925335,
'dc' => '1',
'records' => '29443',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '490.72',
'rps_duration' => 29443,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 1,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925337,
'dc' => '1',
'records' => '29862',
'start_time' => '2011-07-17 19:55:00',
'duration' => '2',
'rps_period_length' => '497.7',
'rps_duration' => 14931,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 3,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925337,
'dc' => '1',
'records' => '30693',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '511.55',
'rps_duration' => 30693,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 6,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925337,
'dc' => '1',
'records' => '30693',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '511.55',
'rps_duration' => 30693,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => '1',
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925339,
'dc' => '1',
'records' => '31098',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '518.3',
'rps_duration' => 31098,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 1,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925340,
'dc' => '1',
'records' => '31924',
'start_time' => '2011-07-17 19:55:00',
'duration' => '2',
'rps_period_length' => '532.07',
'rps_duration' => 15962,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 4,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925340,
'dc' => '1',
'records' => '31924',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '532.07',
'rps_duration' => 31924,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 8,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925340,
'dc' => '1',
'records' => '32773',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '546.22',
'rps_duration' => 32773,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 10,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925340,
'dc' => '1',
'records' => '33197',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '553.28',
'rps_duration' => 33197,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 1,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925341,
'dc' => '1',
'records' => '33197',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '553.28',
'rps_duration' => 33197,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 7,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925341,
'dc' => '1',
'records' => '34363',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '572.72',
'rps_duration' => 34363,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 2,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925342,
'dc' => '1',
'records' => '35100',
'start_time' => '2011-07-17 19:55:00',
'duration' => '2',
'rps_period_length' => 585,
'rps_duration' => 17550,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 6,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925342,
'dc' => '1',
'records' => '35478',
'start_time' => '2011-07-17 19:55:00',
'duration' => '1',
'rps_period_length' => '591.3',
'rps_duration' => 35478,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 2,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925343,
'dc' => '1',
'records' => '35478',
'start_time' => '2011-07-17 19:55:00',
'duration' => '2',
'rps_period_length' => '591.3',
'rps_duration' => 17739,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 5,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925343,
'dc' => '1',
'records' => '35861',
'start_time' => '2011-07-17 19:55:00',
'duration' => '2',
'rps_period_length' => '597.68',
'rps_duration' => '17930.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 11,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925343,
'dc' => '1',
'records' => '35861',
'start_time' => '2011-07-17 19:55:00',
'duration' => '2',
'rps_period_length' => '597.68',
'rps_duration' => '17930.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 18,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925343,
'dc' => '1',
'records' => '36627',
'start_time' => '2011-07-17 19:55:00',
'duration' => '2',
'rps_period_length' => '610.45',
'rps_duration' => '18313.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 5,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925344,
'dc' => '1',
'records' => '36627',
'start_time' => '2011-07-17 19:55:00',
'duration' => '3',
'rps_period_length' => '610.45',
'rps_duration' => 12209,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 8,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925344,
'dc' => '1',
'records' => '36627',
'start_time' => '2011-07-17 19:55:00',
'duration' => '3',
'rps_period_length' => '610.45',
'rps_duration' => 12209,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925300',
'package_id' => '23',
'until_epoch' => 1310925300,
'from_epoch' => 1310925240,
'ordinal' => 10,
'from_time' => '2011-07-17 19:54:00',
'script_id' => '1',
'epoch' => 1310925344,
'dc' => '1',
'records' => '37004',
'start_time' => '2011-07-17 19:55:00',
'duration' => '2',
'rps_period_length' => '616.73',
'rps_duration' => 18502,
'period_length' => 60,
'until_time' => '2011-07-17 19:55:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => '2',
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925405,
'dc' => '1',
'records' => '28435',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '473.92',
'rps_duration' => 28435,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 1,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925406,
'dc' => '1',
'records' => '29764',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '496.07',
'rps_duration' => 29764,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 3,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925406,
'dc' => '1',
'records' => '29764',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '496.07',
'rps_duration' => 29764,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 1,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925407,
'dc' => '1',
'records' => '31533',
'start_time' => '2011-07-17 19:56:00',
'duration' => '2',
'rps_period_length' => '525.55',
'rps_duration' => '15766.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 5,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925407,
'dc' => '1',
'records' => '31925',
'start_time' => '2011-07-17 19:56:00',
'duration' => '2',
'rps_period_length' => '532.08',
'rps_duration' => '15962.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 7,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925407,
'dc' => '1',
'records' => '31925',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '532.08',
'rps_duration' => 31925,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 2,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925408,
'dc' => '1',
'records' => '31925',
'start_time' => '2011-07-17 19:56:00',
'duration' => '2',
'rps_period_length' => '532.08',
'rps_duration' => '15962.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 4,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925408,
'dc' => '1',
'records' => '32323',
'start_time' => '2011-07-17 19:56:00',
'duration' => '2',
'rps_period_length' => '538.72',
'rps_duration' => '16161.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 10,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925408,
'dc' => '1',
'records' => '33131',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '552.18',
'rps_duration' => 33131,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 12,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925408,
'dc' => '1',
'records' => '33131',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '552.18',
'rps_duration' => 33131,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 3,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925409,
'dc' => '1',
'records' => '34694',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '578.23',
'rps_duration' => 34694,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 6,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925409,
'dc' => '1',
'records' => '34694',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '578.23',
'rps_duration' => 34694,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 1,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925410,
'dc' => '1',
'records' => '34694',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '578.23',
'rps_duration' => 34694,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 4,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925410,
'dc' => '1',
'records' => '34694',
'start_time' => '2011-07-17 19:56:00',
'duration' => '2',
'rps_period_length' => '578.23',
'rps_duration' => 17347,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 1,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925411,
'dc' => '1',
'records' => '35466',
'start_time' => '2011-07-17 19:56:00',
'duration' => '2',
'rps_period_length' => '591.1',
'rps_duration' => 17733,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 3,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925411,
'dc' => '1',
'records' => '35786',
'start_time' => '2011-07-17 19:56:00',
'duration' => '2',
'rps_period_length' => '596.43',
'rps_duration' => 17893,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 6,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925411,
'dc' => '1',
'records' => '35786',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '596.43',
'rps_duration' => 35786,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 1,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925412,
'dc' => '1',
'records' => '36177',
'start_time' => '2011-07-17 19:56:00',
'duration' => '2',
'rps_period_length' => '602.95',
'rps_duration' => '18088.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 3,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925412,
'dc' => '1',
'records' => '36542',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '609.03',
'rps_duration' => 36542,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925360',
'package_id' => '23',
'until_epoch' => 1310925360,
'from_epoch' => 1310925300,
'ordinal' => 8,
'from_time' => '2011-07-17 19:55:00',
'script_id' => '1',
'epoch' => 1310925412,
'dc' => '1',
'records' => '36889',
'start_time' => '2011-07-17 19:56:00',
'duration' => '1',
'rps_period_length' => '614.82',
'rps_duration' => 36889,
'period_length' => 60,
'until_time' => '2011-07-17 19:56:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => '4',
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925457,
'dc' => '1',
'records' => '30095',
'start_time' => '2011-07-17 19:57:00',
'duration' => '1',
'rps_period_length' => '501.58',
'rps_duration' => 30095,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 2,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925458,
'dc' => '1',
'records' => '30095',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '501.58',
'rps_duration' => '15047.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 5,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925458,
'dc' => '1',
'records' => '31397',
'start_time' => '2011-07-17 19:57:00',
'duration' => '1',
'rps_period_length' => '523.28',
'rps_duration' => 31397,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 1,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925459,
'dc' => '1',
'records' => '31397',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '523.28',
'rps_duration' => '15698.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 10,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925459,
'dc' => '1',
'records' => '31397',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '523.28',
'rps_duration' => '15698.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 1,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925460,
'dc' => '1',
'records' => '31819',
'start_time' => '2011-07-17 19:57:00',
'duration' => '3',
'rps_period_length' => '530.32',
'rps_duration' => '10606.33',
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 4,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925460,
'dc' => '1',
'records' => '31819',
'start_time' => '2011-07-17 19:57:00',
'duration' => '3',
'rps_period_length' => '530.32',
'rps_duration' => '10606.33',
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 6,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925460,
'dc' => '1',
'records' => '32636',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '543.93',
'rps_duration' => 16318,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 8,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925460,
'dc' => '1',
'records' => '33047',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '550.78',
'rps_duration' => '16523.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 10,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925460,
'dc' => '1',
'records' => '33453',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '557.55',
'rps_duration' => '16726.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 13,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925460,
'dc' => '1',
'records' => '34220',
'start_time' => '2011-07-17 19:57:00',
'duration' => '1',
'rps_period_length' => '570.33',
'rps_duration' => 34220,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 5,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925461,
'dc' => '1',
'records' => '34220',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '570.33',
'rps_duration' => 17110,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 8,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925461,
'dc' => '1',
'records' => '34220',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '570.33',
'rps_duration' => 17110,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 10,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925461,
'dc' => '1',
'records' => '35030',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '583.83',
'rps_duration' => 17515,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 12,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925461,
'dc' => '1',
'records' => '35030',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '583.83',
'rps_duration' => 17515,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 1,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925462,
'dc' => '1',
'records' => '36956',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '615.93',
'rps_duration' => 18478,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 3,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925462,
'dc' => '1',
'records' => '36956',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '615.93',
'rps_duration' => 18478,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 5,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925462,
'dc' => '1',
'records' => '36956',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '615.93',
'rps_duration' => 18478,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 7,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925462,
'dc' => '1',
'records' => '36956',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '615.93',
'rps_duration' => 18478,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925420',
'package_id' => '23',
'until_epoch' => 1310925420,
'from_epoch' => 1310925360,
'ordinal' => 9,
'from_time' => '2011-07-17 19:56:00',
'script_id' => '1',
'epoch' => 1310925462,
'dc' => '1',
'records' => '36956',
'start_time' => '2011-07-17 19:57:00',
'duration' => '2',
'rps_period_length' => '615.93',
'rps_duration' => 18478,
'period_length' => 60,
'until_time' => '2011-07-17 19:57:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => '2',
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925514,
'dc' => '1',
'records' => '29247',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '487.45',
'rps_duration' => 29247,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => '1',
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925517,
'dc' => '1',
'records' => '29667',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '494.45',
'rps_duration' => 29667,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 4,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925518,
'dc' => '1',
'records' => '30133',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '502.22',
'rps_duration' => 30133,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 11,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925519,
'dc' => '1',
'records' => '31443',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '524.05',
'rps_duration' => 31443,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 20,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925519,
'dc' => '1',
'records' => '31443',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '524.05',
'rps_duration' => 31443,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 4,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925520,
'dc' => '1',
'records' => '31443',
'start_time' => '2011-07-17 19:58:00',
'duration' => '2',
'rps_period_length' => '524.05',
'rps_duration' => '15721.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 11,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925520,
'dc' => '1',
'records' => '32273',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '537.88',
'rps_duration' => 32273,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 13,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925520,
'dc' => '1',
'records' => '32273',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '537.88',
'rps_duration' => 32273,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 20,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925520,
'dc' => '1',
'records' => '32659',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '544.32',
'rps_duration' => 32659,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 9,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925521,
'dc' => '1',
'records' => '34667',
'start_time' => '2011-07-17 19:58:00',
'duration' => '1',
'rps_period_length' => '577.78',
'rps_duration' => 34667,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 1,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925522,
'dc' => '1',
'records' => '35037',
'start_time' => '2011-07-17 19:58:00',
'duration' => '2',
'rps_period_length' => '583.95',
'rps_duration' => '17518.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 3,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925522,
'dc' => '1',
'records' => '35037',
'start_time' => '2011-07-17 19:58:00',
'duration' => '2',
'rps_period_length' => '583.95',
'rps_duration' => '17518.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 6,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925522,
'dc' => '1',
'records' => '35401',
'start_time' => '2011-07-17 19:58:00',
'duration' => '2',
'rps_period_length' => '590.02',
'rps_duration' => '17700.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 1,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925523,
'dc' => '1',
'records' => '35401',
'start_time' => '2011-07-17 19:58:00',
'duration' => '3',
'rps_period_length' => '590.02',
'rps_duration' => '11800.33',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 5,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925523,
'dc' => '1',
'records' => '36162',
'start_time' => '2011-07-17 19:58:00',
'duration' => '3',
'rps_period_length' => '602.7',
'rps_duration' => 12054,
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 9,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925523,
'dc' => '1',
'records' => '36895',
'start_time' => '2011-07-17 19:58:00',
'duration' => '2',
'rps_period_length' => '614.92',
'rps_duration' => '18447.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 12,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925523,
'dc' => '1',
'records' => '36895',
'start_time' => '2011-07-17 19:58:00',
'duration' => '2',
'rps_period_length' => '614.92',
'rps_duration' => '18447.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 15,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925523,
'dc' => '1',
'records' => '36895',
'start_time' => '2011-07-17 19:58:00',
'duration' => '2',
'rps_period_length' => '614.92',
'rps_duration' => '18447.5',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 2,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925524,
'dc' => '1',
'records' => '36895',
'start_time' => '2011-07-17 19:58:00',
'duration' => '3',
'rps_period_length' => '614.92',
'rps_duration' => '12298.33',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
},
{
'start_epoch' => '1310925480',
'package_id' => '23',
'until_epoch' => 1310925480,
'from_epoch' => 1310925420,
'ordinal' => 4,
'from_time' => '2011-07-17 19:57:00',
'script_id' => '1',
'epoch' => 1310925524,
'dc' => '1',
'records' => '36895',
'start_time' => '2011-07-17 19:58:00',
'duration' => '3',
'rps_period_length' => '614.92',
'rps_duration' => '12298.33',
'period_length' => 60,
'until_time' => '2011-07-17 19:58:00'
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment