"-S <start_time>: bound the start of the returned data.\n".
" Default is beginning of available data for a list of nodes,\n".
" or the beginning of the specified experiment.\n".
"-E <end_time>: bound the end of the returned data. Default is 'now'.\n"
"-E <end_time>: bound the end of the returned data. Default is 'now'.\n".
"\n".
"Start/end times can be specified as anything recognized by the Date::Parse module.\n"
"When requesting experiment data, start times prior to the start of the experiment will be truncated to the beginning of the experiment (with a warning).\n";
"Start/end times can be specified as anything recognized by the\n".
"Date::Parse module. When requesting experiment data, start times\n".
"prior to the start of the experiment will be truncated to the beginning\n".
"of the experiment (with a warning). The start time must be less than\n".
"the end time. Returned data is reported at a fixed 1 hour granularity.\n".
"Data series with no data points are indicated as such with stub\n".
"entries in the output.\n";
exit1;
}
...
...
@@ -111,7 +117,7 @@ if ($opts{'e'}) {
warn"Experiment $experiment is not active!\n";
exit1;
}
@nodelist=$experiment->NodeList(1,1);
@nodelist=$experiment->NodeList(0,1);
# Bump start time to the beginning of this experiment plus one
# step. Adding one step epoch prevents us from grabbing stastics
# that incorporate data from prior to the start of the experiment.