summaryrefslogtreecommitdiffstats
path: root/plugins/check_snmp.c
diff options
context:
space:
mode:
authorSimon Kainz <simon@familiekainz.at>2013-08-05 21:00:21 (GMT)
committerHolger Weiss <holger@zedat.fu-berlin.de>2013-08-18 17:35:18 (GMT)
commitdc1d1c46d6f9ca1a15609c126cf212bf3bb5ee4e (patch)
tree54b02ad415020a305c8df31ab533c9c380884242 /plugins/check_snmp.c
parent22519bced6235c1c6cdb81d59783dd8fe1208461 (diff)
downloadmonitoring-plugins-dc1d1c46d6f9ca1a15609c126cf212bf3bb5ee4e.tar.gz
added --offset option to allow adjustment of sensor data
Diffstat (limited to 'plugins/check_snmp.c')
-rw-r--r--plugins/check_snmp.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c
index 3e8a9cf..cd50389 100644
--- a/plugins/check_snmp.c
+++ b/plugins/check_snmp.c
@@ -63,6 +63,7 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net";
63#define L_CALCULATE_RATE CHAR_MAX+1 63#define L_CALCULATE_RATE CHAR_MAX+1
64#define L_RATE_MULTIPLIER CHAR_MAX+2 64#define L_RATE_MULTIPLIER CHAR_MAX+2
65#define L_INVERT_SEARCH CHAR_MAX+3 65#define L_INVERT_SEARCH CHAR_MAX+3
66#define L_OFFSET CHAR_MAX+4
66 67
67/* Gobble to string - stop incrementing c when c[0] match one of the 68/* Gobble to string - stop incrementing c when c[0] match one of the
68 * characters in s */ 69 * characters in s */
@@ -138,6 +139,7 @@ char *output_delim;
138char *miblist = NULL; 139char *miblist = NULL;
139int needmibs = FALSE; 140int needmibs = FALSE;
140int calculate_rate = 0; 141int calculate_rate = 0;
142double offset = 0.0;
141int rate_multiplier = 1; 143int rate_multiplier = 1;
142state_data *previous_state; 144state_data *previous_state;
143double previous_value[MAX_OIDS]; 145double previous_value[MAX_OIDS];
@@ -430,7 +432,7 @@ main (int argc, char **argv)
430 ptr = strpbrk (show, "0123456789"); 432 ptr = strpbrk (show, "0123456789");
431 if (ptr == NULL) 433 if (ptr == NULL)
432 die (STATE_UNKNOWN,_("No valid data returned (%s)\n"), show); 434 die (STATE_UNKNOWN,_("No valid data returned (%s)\n"), show);
433 response_value[i] = strtod (ptr, NULL); 435 response_value[i] = strtod (ptr, NULL)+offset;
434 436
435 if(calculate_rate) { 437 if(calculate_rate) {
436 if (previous_state!=NULL) { 438 if (previous_state!=NULL) {
@@ -619,6 +621,7 @@ process_arguments (int argc, char **argv)
619 {"next", no_argument, 0, 'n'}, 621 {"next", no_argument, 0, 'n'},
620 {"rate", no_argument, 0, L_CALCULATE_RATE}, 622 {"rate", no_argument, 0, L_CALCULATE_RATE},
621 {"rate-multiplier", required_argument, 0, L_RATE_MULTIPLIER}, 623 {"rate-multiplier", required_argument, 0, L_RATE_MULTIPLIER},
624 {"offset", required_argument, 0, L_OFFSET},
622 {"invert-search", no_argument, 0, L_INVERT_SEARCH}, 625 {"invert-search", no_argument, 0, L_INVERT_SEARCH},
623 {"perf-oids", no_argument, 0, 'O'}, 626 {"perf-oids", no_argument, 0, 'O'},
624 {0, 0, 0, 0} 627 {0, 0, 0, 0}
@@ -833,6 +836,9 @@ process_arguments (int argc, char **argv)
833 if(!is_integer(optarg)||((rate_multiplier=atoi(optarg))<=0)) 836 if(!is_integer(optarg)||((rate_multiplier=atoi(optarg))<=0))
834 usage2(_("Rate multiplier must be a positive integer"),optarg); 837 usage2(_("Rate multiplier must be a positive integer"),optarg);
835 break; 838 break;
839 case L_OFFSET:
840 offset=strtod(optarg,NULL);
841 break;
836 case L_INVERT_SEARCH: 842 case L_INVERT_SEARCH:
837 invert_search=1; 843 invert_search=1;
838 break; 844 break;
@@ -1081,6 +1087,8 @@ print_help (void)
1081 printf (" %s\n", _("Enable rate calculation. See 'Rate Calculation' below")); 1087 printf (" %s\n", _("Enable rate calculation. See 'Rate Calculation' below"));
1082 printf (" %s\n", "--rate-multiplier"); 1088 printf (" %s\n", "--rate-multiplier");
1083 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");
1091 printf (" %s\n", _("Allows to add/substract a value to numeric sensor data."));
1084 1092
1085 /* Tests Against Strings */ 1093 /* Tests Against Strings */
1086 printf (" %s\n", "-s, --string=STRING"); 1094 printf (" %s\n", "-s, --string=STRING");