From 6c04157b9fee7745e7c223e751f1ee665b5f8ac3 Mon Sep 17 00:00:00 2001 From: Heuzef Date: Wed, 25 Sep 2019 17:03:35 +0200 Subject: [PATCH] Add last_full_num --- backuppc_check.pl | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/backuppc_check.pl b/backuppc_check.pl index 52bd4a8..1744696 100644 --- a/backuppc_check.pl +++ b/backuppc_check.pl @@ -47,6 +47,9 @@ if ( $host ) { foreach my $backup ( @bpc_info ) { # Skip partial or active backups next if ( $backup->{type} !~ m/^full|incr$/ ); + if ( $backup->{type} eq "full" ) { + $last_full_num = $backup->{num}; + } # Push all the sizes in our data set to compute avg sizes # Exclude backup N°0 as it'll always have much more new data than normal backups $sizes->add_data($backup->{sizeNew}) unless ( $backup->{num} == 0 ); @@ -109,13 +112,20 @@ else { print("Normal"); } print("\n"); -print("Random file : .........."); +print("Random file :"); + +# Random file + +print("Random file"); + print("\n----------------\n"); # Debug print("\n----------------\n"); print("DEBUG"); print("\n"); +print("last_full_num : $last_full_num"); +print("\n"); print("new_size : $json->{new_size}"); print("\n"); print("new_size_q1 : $json->{new_size_q1}");