Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow multi-level fields for perf/output vars #38

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
8 changes: 6 additions & 2 deletions check_json.pl
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,9 @@
# make label ascii compatible
$label =~ s/[^a-zA-Z0-9_-]//g ;
my $perf_value;
$perf_value = $json_response->{$key};
my $perf_value_str = '$perf_value = $json_response->'.$key;
if ($np->opts->verbose) { (print Dumper ($perf_value_str))};
eval $perf_value_str;
if ($np->opts->verbose) { print Dumper ("JSON key: ".$label.", JSON val: " . $perf_value) };
if ( defined($perf_value) ) {
# add threshold if attribute option matches key
Expand Down Expand Up @@ -248,7 +250,9 @@
# make label ascii compatible
$label =~ s/[^a-zA-Z0-9_-]//g;
my $output_value;
$output_value = $json_response->{$key};
my $output_value_str = '$output_value = $json_response->'.$key;
if ($np->opts->verbose) { (print Dumper ($output_value_str))};
eval $output_value_str;
push(@statusmsg, "$label: $output_value");
}
}
Expand Down