diff --git a/check_http_json.py b/check_http_json.py index dac67ec..2d614e4 100755 --- a/check_http_json.py +++ b/check_http_json.py @@ -161,7 +161,7 @@ class JsonRuleProcessor: k, v = kv.split(',') key, alias = _getKeyAlias(k) if (self.helper.equals(key, v) == False): - failure += " Value for key %s did not match %s." % (alias, v) + failure += " Key %s mismatch. %s != %s" % (alias, v, self.helper.get(key)) return failure def checkThreshold(self, key, alias, r):