From 96932fd7b72a88dc6c694a2a8324464f3439bc23 Mon Sep 17 00:00:00 2001 From: Jan Wagner Date: Fri, 2 Oct 2015 12:57:25 +0200 Subject: check_snmp: small improvement by anonymous submission - response should not start with the delimiter - OID response value taken into account Closes issue #1029 Closes push request #1173 diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 9d966fa..62e6b8b 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c @@ -418,6 +418,9 @@ main (int argc, char **argv) else if (strstr (response, "INTEGER: ")) { show = strstr (response, "INTEGER: ") + 9; } + else if (strstr (response, "OID: ")) { + show = strstr (response, "OID: ") + 5; + } else if (strstr (response, "STRING: ")) { show = strstr (response, "STRING: ") + 8; conv = "%.10g"; -- cgit v0.10-9-g596f