summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
authorHolger Weiss <holger@zedat.fu-berlin.de>2013-08-18 17:38:57 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2013-08-18 17:38:57 (GMT)
commitc7c1102fcba72eed4e0a52a700d591fca0a0f668 (patch)
tree21ec67468bec874c0537c64c37dff4b48685e064 /plugins/check_snmp.c
parentdc1d1c46d6f9ca1a15609c126cf212bf3bb5ee4e (diff)
downloadmonitoring-plugins-c7c1102fcba72eed4e0a52a700d591fca0a0f668.tar.gz
NEWS: Mention the new "check_snmp --offset" option
... and apply two small cosmetic changes to check_snmp.c. Closes #59.
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r--plugins/check_snmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index cd50389..7c3bc4b 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -432,7 +432,7 @@ main (int argc, char **argv)
432 ptr = strpbrk (show, "0123456789"); 432 ptr = strpbrk (show, "0123456789");
433 if (ptr == NULL) 433 if (ptr == NULL)
434 die (STATE_UNKNOWN,_("No valid data returned (%s)\n"), show); 434 die (STATE_UNKNOWN,_("No valid data returned (%s)\n"), show);
435 response_value[i] = strtod (ptr, NULL)+offset; 435 response_value[i] = strtod (ptr, NULL) + offset;
436 436
437 if(calculate_rate) { 437 if(calculate_rate) {
438 if (previous_state!=NULL) { 438 if (previous_state!=NULL) {
@@ -1088,7 +1088,7 @@ print_help (void)
1088 printf (" %s\n", "--rate-multiplier"); 1088 printf (" %s\n", "--rate-multiplier");
1089 printf (" %s\n", _("Converts rate per second. For example, set to 60 to convert to per minute")); 1089 printf (" %s\n", _("Converts rate per second. For example, set to 60 to convert to per minute"));
1090 printf (" %s\n", "--offset=OFFSET"); 1090 printf (" %s\n", "--offset=OFFSET");
1091 printf (" %s\n", _("Allows to add/substract a value to numeric sensor data.")); 1091 printf (" %s\n", _("Add/substract the specified OFFSET to numeric sensor data"));
1092 1092
1093 /* Tests Against Strings */ 1093 /* Tests Against Strings */
1094 printf (" %s\n", "-s, --string=STRING"); 1094 printf (" %s\n", "-s, --string=STRING");