Init complete JSON objects with default values in bheck_backuppc_sudo

tags/zabbix-agent-addons-0.2.101-1
Daniel Berteaud 5 years ago
parent 7ded61c8af
commit d49e7816d5
  1. 11
      zabbix_scripts/check_backuppc_sudo

@ -36,6 +36,8 @@ if ( $host ) {
$json = {
bkp => 0,
full_size => 0,
total_size => 0,
history_size => 0,
errors => 0,
new_size => 0,
new_size_avg => 0,
@ -43,7 +45,11 @@ if ( $host ) {
new_size_q1 => 0,
new_size_q3 => 0,
duration => 0,
comp_ratio => 0
comp_ratio => 0,
enable => 0,
max_errors => 0,
age => 0,
type => 'none'
};
my $new_size_of_last_full = 0;
@ -101,6 +107,9 @@ if ( $host ) {
$json = {
perf => 0,
size => 0,
full_size => 0,
total_size => 0,
history_size => 0,
hosts => 0,
bkp => 0,
ratio => 0

Loading…
Cancel
Save