Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions check_json.pl
Original file line number Diff line number Diff line change
Expand Up @@ -245,10 +245,10 @@
foreach my $key ($np->opts->outputvars eq '*' ? map { "{$_}"} sort keys %$json_response : split(',', $np->opts->outputvars)) {
# use last element of key as label
my $label = (split('->', $key))[-1];
# make label ascii compatible
# make label ascii compatible i.e. remove the { and }
$label =~ s/[^a-zA-Z0-9_-]//g;
my $output_value;
$output_value = $json_response->{$key};
$output_value = $json_response->{$label};

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wont this return $label just when it exists on the root of the json ??

push(@statusmsg, "$label: $output_value");
}
}
Expand Down