From e080780248ab33d4ef7de71c6f7dcaef52d4ed7e Mon Sep 17 00:00:00 2001 From: Daniel Berteaud Date: Tue, 17 Dec 2019 08:51:45 +0100 Subject: [PATCH] Fix ready sizeNew from last backup (except when link hasn't ran yet) --- zabbix_scripts/check_backuppc_sudo | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zabbix_scripts/check_backuppc_sudo b/zabbix_scripts/check_backuppc_sudo index bb64dd9..10fcc0e 100644 --- a/zabbix_scripts/check_backuppc_sudo +++ b/zabbix_scripts/check_backuppc_sudo @@ -90,10 +90,10 @@ if ( $host ) { $json->{history_size} = $json->{total_size} - $json->{full_size}; $json->{age} = time - $bpc_info[$i]->{startTime}; - # For newSize, we need to wait for BackupPC_link to run, which can be delayed + # For sizeNew, we need to wait for BackupPC_link to run, which can be delayed # if a nightly process is running. In this case, use the stats from the previous backup # Except when we ave a single backup, in which case we read stats of this only backup - $i = ( $backup->{sizeNew} || scalar @bpc_info == 1 ) ? -1 : -2; + $i = ( $bpc_info[-1]->{sizeNew} || scalar @bpc_info == 1 ) ? -1 : -2; $json->{new_size} = $bpc_info[$i]->{sizeNew}; $json->{comp_ratio} = ( $bpc_info[$i]->{sizeNew} > 0 ) ? sprintf( "%.2f", 100 - ( $bpc_info[$i]->{sizeNewComp} * 100 / $bpc_info[$i]->{sizeNew} ) )