1
0
mirror of https://github.com/c-kr/check_json.git synced 2025-04-03 15:53:45 +02:00
This commit is contained in:
DragonQ 2023-03-14 06:16:33 +03:00 committed by GitHub
commit cf2abc4b1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -218,7 +218,9 @@ if ($np->opts->perfvars) {
# 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
@ -248,7 +250,9 @@ if ($np->opts->outputvars) {
# 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");
}
}