IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jul 15, 2011, 4:16:20 PM (15 years ago)
Author:
rhenders
Message:

all time-series plots now created at same time for speed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tools/czarpoll.pl

    r31825 r31886  
    252252
    253253            chomp($label);
    254             $plotter->createLogAndLinearTimeSeries($label,  $stage, $begin, $end);
    255             $plotter->createRatePlot($label, $stage, $begin, $end, undef, 1, 1);
     254            $plotter->createTimeSeries($label, $stage, $begin, $end, 1, 1, 1);
     255            $plotter->createRateHistogram($label, $stage, $begin, $end, undef);
    256256        }
    257257    }
     
    263263        my ($label) = @{$row};
    264264
    265         $plotter->createLogAndLinearTimeSeries($label, undef, $begin, $end);
    266         $plotter->createRatePlot($label, undef, $begin, $end, undef, 1, 1);
     265        $plotter->createTimeSeries($label, undef, $begin, $end, 1, 1, 1);
     266        $plotter->createRateHistogram($label, undef, $begin, $end, undef);
    267267        $plotter->createHistogram($label, $begin, $end);
    268268    }
     
    270270    $allServerLabels = "all_".$server."_labels";
    271271
    272     $plotter->createLogAndLinearTimeSeries($allServerLabels, undef, $begin, $end);
    273     $plotter->createRatePlot($allServerLabels, undef, $begin, $end, undef, 1, 1);
     272    $plotter->createTimeSeries($allServerLabels, undef, $begin, $end, 1, 1, 1);
     273    $plotter->createRateHistogram($allServerLabels, undef, $begin, $end, undef);
    274274    $plotter->createHistogram($allServerLabels, $begin, $end);
    275275    foreach $stage (@stages) {
    276276
    277         $plotter->createLogAndLinearTimeSeries($allServerLabels, $stage, $begin, $end); # TODO must be a neater way...
    278             $plotter->createRatePlot($allServerLabels, $stage, $begin, $end, undef, 1, 1);
     277        $plotter->createTimeSeries($allServerLabels, $stage, $begin, $end, 1, 1, 1); # TODO must be a neater way...
     278        $plotter->createRateHistogram($allServerLabels, $stage, $begin, $end, undef);
    279279    }
    280280}
Note: See TracChangeset for help on using the changeset viewer.