5858 ' dever=s' => \(my $dever ),
5959 ' interval|i=s' => \($resolution ),
6060 ' version' => \(my $print_version ),
61- ' skipinvalid ' => \(my $skipinvalid ),
61+ ' stoponinvalid ' => \(my $stoponinvalid ),
6262 ' nohead' => \(my $nohead ),
6363 ' configfile|c=s' => \(my $config_file )
6464) or pod2usage(-verbose => 1, -input => \*DATA );
153153 my $arguments = " &resolution=$resolution &startTime=$st_timestamp " ;
154154 my $endTime = $et_timestamp ? " &endTime=$et_timestamp " : " " ;
155155 $arguments = $arguments . $endTime ;
156- $ret = $ret + $analytic_list -> get_perf($type , $outdir , $arguments , $allowedres {$resolution }, $format , $skipinvalid );
156+ $ret = $ret + $analytic_list -> get_perf($type , $outdir , $arguments , $allowedres {$resolution }, $format , $stoponinvalid );
157157
158158}
159159
@@ -178,7 +178,7 @@ =head1 SYNOPSIS
178178 [-i interval ]
179179 [-st <start_time> ]
180180 [-et <end_time> ]
181- [-skipinvalid ]
181+ [-stoponinvalid ]
182182 -format csv|json
183183 -debug
184184
@@ -233,10 +233,10 @@ =head1 OPTIONS
233233
234234=over 4
235235
236- =item B<-skipinvalid >
237- Skip broken or empty analytic output and contiune with other .
238- Return code will be not 0 if there were any skipped analytics.
239- Default is stop execution on first broken or empty analytic .
236+ =item B<-stoponinvalid >
237+ Stop on the invalid analytic and exit processing .
238+ Invalid analytics are skipped by default. Return code will be not 0
239+ if there were any skipped analytics .
240240
241241=item B<-format >
242242Display output in csv or json format
0 commit comments