1
0
mirror of https://github.com/c-kr/check_json.git synced 2024-11-23 19:03:49 +01:00
This commit is contained in:
Miłosz Szewczak 2018-05-24 09:37:30 +01:00 committed by GitHub
parent f6d603b6e7
commit 820934c865
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ my $np = Nagios::Plugin->new(
extra => "\nExample: \n" extra => "\nExample: \n"
. "check_json.pl --url http://192.168.5.10:9332/local_stats --attributes '{shares}->{dead}' " . "check_json.pl --url http://192.168.5.10:9332/local_stats --attributes '{shares}->{dead}' "
. "--warning :5 --critical :10 --perfvars '{shares}->{dead},{shares}->{live}' " . "--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', url => 'https://github.com/c-kr/check_json',
plugin => 'check_json', plugin => 'check_json',
timeout => 15, timeout => 15,
@ -105,7 +105,6 @@ $np->add_arg(
help => "-x|--xauth\n Use X-Auth-Token in header", help => "-x|--xauth\n Use X-Auth-Token in header",
); );
## Parse @ARGV and process standard arguments (e.g. usage, help, version) ## Parse @ARGV and process standard arguments (e.g. usage, help, version)
$np->getopts; $np->getopts;
if ($np->opts->verbose) { (print Dumper ($np))}; if ($np->opts->verbose) { (print Dumper ($np))};
@ -114,7 +113,7 @@ if ($np->opts->verbose) { (print Dumper ($np))};
my $ua = LWP::UserAgent->new; my $ua = LWP::UserAgent->new;
$ua->env_proxy; $ua->env_proxy;
$ua->agent('check_json/0.5'); $ua->agent('check_json/0.5');
$ua->default_header('Accept' => 'application/json' ); $ua->default_header('Accept' => 'application/json');
$ua->protocols_allowed( [ 'http', 'https'] ); $ua->protocols_allowed( [ 'http', 'https'] );
$ua->parse_head(0); $ua->parse_head(0);
$ua->timeout($np->opts->timeout); $ua->timeout($np->opts->timeout);