master
Heuzef 5 years ago
parent 70058bfe15
commit e850c77439
  1. 4
      backuppc_check.pl

@ -57,7 +57,7 @@ if ( $host ) {
my $i = ( $bpc_info[-1]->{type} =~ m/^full|incr$/ ) ? -1 : -2;
$json->{errors} = $bpc_info[$i]->{xferErrs};
$json->{new_size} = $bpc_info[$i]->{sizeNew};
$json->{new_size} = 20000000;
$json->{new_size_avg} = int $sizes->mean;
$json->{new_size_median} = int $sizes->median;
$json->{new_size_q1} = eval { int $sizes->quantile(1) } || 0;
@ -83,8 +83,6 @@ print("Errors : $json->{errors}");
print("\n");
print("Size Consistency : ");
$json->{new_size} == "20";
# TOO BIG ?
my $toobig = "1";
if ( $json->{new_size} > ($json->{new_size_q3} + $json->{new_size_q3} - $json->{new_size_q1}) * 1.5 && $json->{new_size} > $json->{new_size_avg} * 6 ) {

Loading…
Cancel
Save