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:
Miłosz Szewczak 2022-04-06 11:37:11 +02:00 committed by GitHub
commit f218c33d39
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,13 +19,14 @@ my $np = Nagios::Plugin->new(
. "[ -m|--metadata <content> ] "
. "[ -T|--contenttype <content-type> ] "
. "[ --ignoressl ] "
. "[ -x|--xauth <X-Auth-Token> ] "
. "[ -h|--help ] ",
version => '0.5',
blurb => 'Nagios plugin to check JSON attributes via http(s)',
extra => "\nExample: \n"
. "check_json.pl --url http://192.168.5.10:9332/local_stats --attributes '{shares}->{dead}' "
. "--warning :5 --critical :10 --perfvars '{shares}->{dead},{shares}->{live}' "
. "--outputvars '{status_message}'",
. "--outputvars '{status_message}' -x <api_token>",
url => 'https://github.com/c-kr/check_json',
plugin => 'check_json',
timeout => 15,
@ -99,13 +100,17 @@ $np->add_arg(
help => "--ignoressl\n Ignore bad ssl certificates",
);
$np->add_arg(
spec => 'xauth|x=s',
help => "-x|--xauth\n Use X-Auth-Token in header",
);
## Parse @ARGV and process standard arguments (e.g. usage, help, version)
$np->getopts;
if ($np->opts->verbose) { (print Dumper ($np))};
## GET URL
my $ua = LWP::UserAgent->new;
$ua->env_proxy;
$ua->agent('check_json/0.5');
$ua->default_header('Accept' => 'application/json');
@ -113,6 +118,10 @@ $ua->protocols_allowed( [ 'http', 'https'] );
$ua->parse_head(0);
$ua->timeout($np->opts->timeout);
if ($np->opts->xauth) {
$ua->default_header('Accept' => 'application/json', 'X-Auth-Token' => $np->opts->xauth );
}
if ($np->opts->ignoressl) {
$ua->ssl_opts(verify_hostname => 0, SSL_verify_mode => 0x00);
}