Changeset 38258 for trunk/ippMonitor/czartool/czarplot.pl
- Timestamp:
- May 13, 2015, 9:19:19 AM (11 years ago)
- File:
-
- 1 edited
-
trunk/ippMonitor/czartool/czarplot.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ippMonitor/czartool/czarplot.pl
r34249 r38258 30 30 my $log = undef; 31 31 my $psps = undef; 32 my $project = 'gpc1'; 32 33 33 34 GetOptions ( 34 35 "label|l=s" => \$label, 36 "project=s" => \$project, 35 37 "stage|s=s" => \$stage, 36 38 "timeinpast|p=s" => \$timeinpast, … … 110 112 my $newDayTime = $config->getMetricsStartTime(); 111 113 114 my $projectDb = $config->getDbInstanceForProject($project); 115 die "Failed to open database for $project.\n" unless $projectDb; 116 117 112 118 my $plotter = undef; 113 119 if ($savingToFile) { 114 120 115 $plotter = czartool::Plotter->new_file($config, $p ath, $save_temps);121 $plotter = czartool::Plotter->new_file($config, $projectDb, $path, $save_temps); 116 122 } 117 123 else { 118 124 119 $plotter = czartool::Plotter->new_display($config, $ save_temps);125 $plotter = czartool::Plotter->new_display($config, $projectDb, $save_temps); 120 126 } 121 127
Note:
See TracChangeset
for help on using the changeset viewer.
