mirror of
https://github.com/c-kr/check_json.git
synced 2025-04-03 15:53:45 +02:00
Merge 0ce9e7d42e
into 6fbf8379fb
This commit is contained in:
commit
e35f467904
@ -139,8 +139,14 @@ my $json_response = decode_json($response->content);
|
||||
if ($np->opts->verbose) { (print Dumper ($json_response))};
|
||||
|
||||
my @attributes = split(',', $np->opts->attributes);
|
||||
my @warning = split(',', $np->opts->warning);
|
||||
my @critical = split(',', $np->opts->critical);
|
||||
my @warning;
|
||||
if ($np->opts->warning) {
|
||||
@warning = split(',', $np->opts->warning);
|
||||
}
|
||||
my @critical;
|
||||
if ($np->opts->critical) {
|
||||
@critical = split(',', $np->opts->critical);
|
||||
}
|
||||
my @divisor = $np->opts->divisor ? split(',',$np->opts->divisor) : () ;
|
||||
my %attributes = map { $attributes[$_] => { warning => $warning[$_] , critical => $critical[$_], divisor => ($divisor[$_] or 0) } } 0..$#attributes;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user