Print size infos

master
Heuzef 5 years ago
parent 0e1c06f8ad
commit ac1e5cdcac
  1. 13
      check_size_consistency.pl

@ -156,12 +156,17 @@ Usage: $0 --host=<host> or --entity=<entity>
EOF
}
print to_json( $json, { pretty => $pretty } );
print("\n----------------\n");
print("Full Size of last backup -0 : $fullSize0");
print("new_size_median :" $json->{new_size_median});
print("\n");
print("Full Size of last backup -1 : $fullSize1");
print("new_size_avg :" $json->{new_size_avg});
print("\n");
print("Full Size of last backup -2 : $fullSize2");
print("new_size_q3 :" $json->{new_size_q3});
print("\n");
print("new_size :" $json->{new_size});
print("\n");
print("new_size_q1 :" $json->{new_size_q1});
print("\n");
print("full_size :" $json->{full_size});
print("\n----------------\n");
exit(0);

Loading…
Cancel
Save