From 88025f0dc1e58777b678dde132be6a77a8012a05 Mon Sep 17 00:00:00 2001 From: James Becwar Date: Thu, 17 Jan 2013 17:36:13 +0000 Subject: [PATCH 1/2] Adds support for Content-Type of application/json; charset=utf-8 in addition to application/json --- check_json.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check_json.pl b/check_json.pl index df84ec9..70a5ed4 100755 --- a/check_json.pl +++ b/check_json.pl @@ -7,7 +7,7 @@ use LWP::UserAgent; use JSON 'decode_json'; my $plugin_name = "Nagios check_http_json"; -my $VERSION = "1.00"; +my $VERSION = "1.01"; # getopt module config $Getopt::Std::STANDARD_HELP_VERSION = 1; @@ -40,7 +40,7 @@ $ua->timeout($opts{t}); my $response = $ua->get($opts{U}); -if ( $response->header("content-type") ne 'application/json' ) +if ( index($response->header("content-type"), 'application/json') == -1 ) { print "Expected content-type to be application/json, got ", $response->header("content-type"); exit EXIT_CRITICAL; From 1c7e7199637f711fd368bc72c24a927cea3a7785 Mon Sep 17 00:00:00 2001 From: James Becwar Date: Thu, 17 Jan 2013 18:26:47 +0000 Subject: [PATCH 2/2] Fixes an issue where if you do something like: check_json.pl -U http://api.thegreensheet.com/Ads/GetTop20AdsInSubCategory/houston/Animals%20Pets%20and%20More it will parse ok, but exit unknown. --- check_json.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/check_json.pl b/check_json.pl index 70a5ed4..b7652e0 100755 --- a/check_json.pl +++ b/check_json.pl @@ -59,6 +59,7 @@ eval { exit EXIT_CRITICAL; }; +$status = EXIT_OK; if ($opts{d}) {