diff options
author | nagios <nagios@opsviewdev32.(none)> | 2010-11-15 15:43:41 +0000 |
---|---|---|
committer | nagios <nagios@opsviewdev32.(none)> | 2010-11-15 15:43:41 +0000 |
commit | 896962a1ad1b7d7c75d42c565b06cc799feb0a7c (patch) | |
tree | 12723ac6ebc1f99109a03a938602a4719a0622e5 /plugins/check_snmp.c | |
parent | e7ac2e68c9524ffed4046559fef0b545785e64a0 (diff) | |
download | monitoring-plugins-896962a1ad1b7d7c75d42c565b06cc799feb0a7c.tar.gz |
check_snmp now considers strings returned by SNMP that contain just
numbers (according to strtod) to be a numeric value for threshold and
performance data
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r-- | plugins/check_snmp.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index f32a26eb..9d919422 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c @@ -160,6 +160,7 @@ main (int argc, char **argv) char *outbuff; char *ptr = NULL; char *show = NULL; + char *endptr = NULL; char *th_warn=NULL; char *th_crit=NULL; char type[8] = ""; @@ -395,6 +396,19 @@ main (int argc, char **argv) } } + /* Allow numeric conversion if whole string is a number. Make concession for strings with " at beginning or end */ + /* This duplicates the conversion a bit later, but is cleaner to separate out the checking against the conversion */ + ptr = show; + if (*ptr == '"') + ptr++; + if (*ptr != '\0' ) { + strtod( ptr, &endptr ); + if (*endptr == '"') + endptr++; + if (*endptr == '\0') + is_numeric=1; + } + } else if (strstr (response, "Timeticks: ")) show = strstr (response, "Timeticks: "); |