@@ -33,6 +33,7 @@ =head1 SYNOPSIS
33
33
use DateTime::Format::Strptime;
34
34
use Log::Log4perl;
35
35
use Getopt::Long qw( GetOptions) ;
36
+ use Statistics::Descriptive::Sparse;
36
37
37
38
my $now = DateTime-> now;
38
39
my $lastday = DateTime-> last_day_of_month(year => $now -> year, month => $now -> month);
@@ -71,7 +72,7 @@ =head1 PROGRAM ARGUMENTS
71
72
72
73
=cut
73
74
74
- my $config_file = $ENV {' scot_reports_config_file' } // ' /opt/scot/etc/reports .cfg.pl' ;
75
+ my $config_file = $ENV {' scot_reports_config_file' } // ' /opt/scot/etc/scot .cfg.pl' ;
75
76
76
77
my $env = Scot::Env-> new(
77
78
config_file => $config_file ,
@@ -396,27 +397,48 @@ sub event_report {
396
397
sub incident_stats {
397
398
my $query = {
398
399
created => {
399
- ' $gte' => $thendt -> epoch,
400
- ' $lte' => $nowdt -> epoch,
400
+ ' $gte' => $startdt -> epoch,
401
+ ' $lte' => $enddt -> epoch,
401
402
},
402
403
status => ' closed' ,
403
- closed => { ' $ne' => 0 },
404
+ " data. closed" => {' $ne' => 0 },
404
405
};
405
406
406
407
my $cursor = $mongo -> collection(' Incident' )-> find($query );
408
+ my $count = $mongo -> collection(' Incident' )-> count($query );
409
+
410
+ if ( $count eq 0 ) {
411
+ die " NO Incidents matching " .Dumper($query );
412
+ }
407
413
my @values ;
408
414
415
+ print " ----------\n " ;
416
+ printf " %5s %20s %20s %20s %s \n " ,
417
+ " id" , " Created" , " Closed" , " Elapsed" ," errors" ;
409
418
while (my $incident = $cursor -> next) {
410
- push @values , $incident -> closed - $incident -> created
419
+ my $id = $incident -> id;
420
+ my $created = $incident -> created;
421
+ my $closed = $incident -> data-> {closed };
422
+ next unless $closed ;
423
+ my $elapsed = $closed - $created ;
424
+ my $errors = ' ' ;
425
+ if ( $elapsed < 0 ) {
426
+ $errors = ' Negative elapsed time rejected' ;
427
+ }
428
+
429
+ printf " %5d %20d %20d %20d %s \n " , $id , $created ,$closed , $elapsed , $errors ;
430
+ if ( $elapsed > 0 ) {
431
+ push @values , $elapsed ;
432
+ }
411
433
}
412
434
413
435
my $util = Statistics::Descriptive::Sparse-> new();
414
436
$util -> add_data(@values );
415
437
416
- print " Average Close = " .$ get_readable_time ($util -> mean)." \n " ;
417
- print " Minimum Close = " .$ get_readable_time ($util -> min)." \n " ;
418
- print " Maximum Close = " .$ get_readable_time ($util -> max)." \n " ;
419
- print " Std. of Dev. = " .$util -> statndar_deviation ." \n " ;
438
+ print " Average Close = " .get_readable_time($util -> mean)." \n " ;
439
+ print " Minimum Close = " .get_readable_time($util -> min)." \n " ;
440
+ print " Maximum Close = " .get_readable_time($util -> max)." \n " ;
441
+ print " Std. of Dev. = " .$util -> standard_deviation ." \n " ;
420
442
print " Number of incidents = " .$util -> count." \n " ;
421
443
422
444
}
0 commit comments