diff --git a/check_json.pl b/check_json.pl index fb253c9..b6404a3 100755 --- a/check_json.pl +++ b/check_json.pl @@ -19,13 +19,14 @@ my $np = Nagios::Plugin->new( . "[ -m|--metadata ] " . "[ -T|--contenttype ] " . "[ --ignoressl ] " + . "[ -x|--xauth ] " . "[ -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 ", 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); }