diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-09-22 03:00:46 (GMT) |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-09-22 03:00:46 (GMT) |
commit | 520f297fa931d391f81af672b5b0e34db71b8c73 (patch) | |
tree | e4d4ff4d206490d4a734a7e27c8d2ddf25c16ee0 /plugins/negate.c | |
parent | 8a39526e1b8754a8b8fbb50f7f6806af4def7baa (diff) | |
download | monitoring-plugins-520f297fa931d391f81af672b5b0e34db71b8c73.tar.gz |
Rewrite the "map changes to return codes" patch nearly from scratch.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1785 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/negate.c')
-rw-r--r-- | plugins/negate.c | 91 |
1 files changed, 75 insertions, 16 deletions
diff --git a/plugins/negate.c b/plugins/negate.c index cbde6a1..00e46d6 100644 --- a/plugins/negate.c +++ b/plugins/negate.c | |||
@@ -3,7 +3,7 @@ | |||
3 | * Nagios negate plugin | 3 | * Nagios negate plugin |
4 | * | 4 | * |
5 | * License: GPL | 5 | * License: GPL |
6 | * Copyright (c) 2002-2006 nagios-plugins team | 6 | * Copyright (c) 2002-2007 nagios-plugins team |
7 | * | 7 | * |
8 | * Last Modified: $Date$ | 8 | * Last Modified: $Date$ |
9 | * | 9 | * |
@@ -70,7 +70,7 @@ | |||
70 | 70 | ||
71 | const char *progname = "negate"; | 71 | const char *progname = "negate"; |
72 | const char *revision = "$Revision$"; | 72 | const char *revision = "$Revision$"; |
73 | const char *copyright = "2002-2006"; | 73 | const char *copyright = "2002-2007"; |
74 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 74 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
75 | 75 | ||
76 | #define DEFAULT_TIMEOUT 9 | 76 | #define DEFAULT_TIMEOUT 9 |
@@ -86,7 +86,12 @@ int validate_arguments (char **); | |||
86 | void print_help (void); | 86 | void print_help (void); |
87 | void print_usage (void); | 87 | void print_usage (void); |
88 | 88 | ||
89 | 89 | static int state[4] = { | |
90 | STATE_OK, | ||
91 | STATE_WARNING, | ||
92 | STATE_CRITICAL, | ||
93 | STATE_UNKNOWN, | ||
94 | }; | ||
90 | 95 | ||
91 | int | 96 | int |
92 | main (int argc, char **argv) | 97 | main (int argc, char **argv) |
@@ -130,12 +135,11 @@ main (int argc, char **argv) | |||
130 | printf ("%s\n", chld_out.line[i]); | 135 | printf ("%s\n", chld_out.line[i]); |
131 | } | 136 | } |
132 | 137 | ||
133 | if (result == STATE_OK) | 138 | if (result >= 0 && result <= 4) { |
134 | exit (STATE_CRITICAL); | 139 | exit (state[result]); |
135 | else if (result == STATE_CRITICAL) | 140 | } else { |
136 | exit (EXIT_SUCCESS); | ||
137 | else | ||
138 | exit (result); | 141 | exit (result); |
142 | } | ||
139 | } | 143 | } |
140 | 144 | ||
141 | /****************************************************************************** | 145 | /****************************************************************************** |
@@ -163,17 +167,22 @@ static const char ** | |||
163 | process_arguments (int argc, char **argv) | 167 | process_arguments (int argc, char **argv) |
164 | { | 168 | { |
165 | int c; | 169 | int c; |
170 | int permute = TRUE; | ||
166 | 171 | ||
167 | int option = 0; | 172 | int option = 0; |
168 | static struct option longopts[] = { | 173 | static struct option longopts[] = { |
169 | {"help", no_argument, 0, 'h'}, | 174 | {"help", no_argument, 0, 'h'}, |
170 | {"version", no_argument, 0, 'V'}, | 175 | {"version", no_argument, 0, 'V'}, |
171 | {"timeout", required_argument, 0, 't'}, | 176 | {"timeout", required_argument, 0, 't'}, |
177 | {"ok", required_argument, 0, 'o'}, | ||
178 | {"warning", required_argument, 0, 'w'}, | ||
179 | {"critical", required_argument, 0, 'c'}, | ||
180 | {"unknown", required_argument, 0, 'u'}, | ||
172 | {0, 0, 0, 0} | 181 | {0, 0, 0, 0} |
173 | }; | 182 | }; |
174 | 183 | ||
175 | while (1) { | 184 | while (1) { |
176 | c = getopt_long (argc, argv, "+hVt:", longopts, &option); | 185 | c = getopt_long (argc, argv, "+hVt:o:w:c:u:", longopts, &option); |
177 | 186 | ||
178 | if (c == -1 || c == EOF) | 187 | if (c == -1 || c == EOF) |
179 | break; | 188 | break; |
@@ -195,11 +204,37 @@ process_arguments (int argc, char **argv) | |||
195 | else | 204 | else |
196 | timeout_interval = atoi (optarg); | 205 | timeout_interval = atoi (optarg); |
197 | break; | 206 | break; |
207 | case 'o': /* replacement for OK */ | ||
208 | if ((state[STATE_OK] = translate_state(optarg)) == ERROR) | ||
209 | usage4 (_("Ok must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-4).")); | ||
210 | permute = FALSE; | ||
211 | break; | ||
212 | |||
213 | case 'w': /* replacement for WARNING */ | ||
214 | if ((state[STATE_WARNING] = translate_state(optarg)) == ERROR) | ||
215 | usage4 (_("Warning must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-3).")); | ||
216 | permute = FALSE; | ||
217 | break; | ||
218 | case 'c': /* replacement for CRITICAL */ | ||
219 | if ((state[STATE_CRITICAL] = translate_state(optarg)) == ERROR) | ||
220 | usage4 (_("Critical must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-3).")); | ||
221 | permute = FALSE; | ||
222 | break; | ||
223 | case 'u': /* replacement for UNKNOWN */ | ||
224 | if ((state[STATE_UNKNOWN] = translate_state(optarg)) == ERROR) | ||
225 | usage4 (_("Unknown must be a valid state name (OK, WARNING, CRITICAL, UNKNOWN) or integer (0-3).")); | ||
226 | permute = FALSE; | ||
227 | break; | ||
198 | } | 228 | } |
199 | } | 229 | } |
200 | 230 | ||
201 | validate_arguments (&argv[optind]); | 231 | validate_arguments (&argv[optind]); |
202 | 232 | ||
233 | if (permute) { /* No [owcu] switch specified, default to this */ | ||
234 | state[STATE_OK] = STATE_CRITICAL; | ||
235 | state[STATE_CRITICAL] = STATE_OK; | ||
236 | } | ||
237 | |||
203 | return (const char **) &argv[optind]; | 238 | return (const char **) &argv[optind]; |
204 | } | 239 | } |
205 | 240 | ||
@@ -235,7 +270,23 @@ validate_arguments (char **command_line) | |||
235 | -@@ | 270 | -@@ |
236 | ******************************************************************************/ | 271 | ******************************************************************************/ |
237 | 272 | ||
238 | 273 | int | |
274 | translate_state (char *state_text) | ||
275 | { | ||
276 | char *temp_ptr; | ||
277 | for (temp_ptr = state_text; *temp_ptr; temp_ptr++) { | ||
278 | *temp_ptr = toupper(*temp_ptr); | ||
279 | } | ||
280 | if (!strcmp(state_text,"OK") || !strcmp(state_text,"0")) | ||
281 | return STATE_OK; | ||
282 | if (!strcmp(state_text,"WARNING") || !strcmp(state_text,"1")) | ||
283 | return STATE_WARNING; | ||
284 | if (!strcmp(state_text,"CRITICAL") || !strcmp(state_text,"2")) | ||
285 | return STATE_CRITICAL; | ||
286 | if (!strcmp(state_text,"UNKNOWN") || !strcmp(state_text,"3")) | ||
287 | return STATE_UNKNOWN; | ||
288 | return ERROR; | ||
289 | } | ||
239 | 290 | ||
240 | void | 291 | void |
241 | print_help (void) | 292 | print_help (void) |
@@ -244,7 +295,8 @@ print_help (void) | |||
244 | 295 | ||
245 | printf (COPYRIGHT, copyright, email); | 296 | printf (COPYRIGHT, copyright, email); |
246 | 297 | ||
247 | printf ("%s\n", _("Negates the status of a plugin (returns OK for CRITICAL, and vice-versa).")); | 298 | printf ("%s\n", _("Negates the status of a plugin (returns OK for CRITICAL and vice-versa).")); |
299 | printf ("%s\n", _("Additional switches can be used to control which state becomes what.")); | ||
248 | 300 | ||
249 | printf ("\n\n"); | 301 | printf ("\n\n"); |
250 | 302 | ||
@@ -253,15 +305,22 @@ print_help (void) | |||
253 | printf (_(UT_HELP_VRSN)); | 305 | printf (_(UT_HELP_VRSN)); |
254 | 306 | ||
255 | printf (_(UT_TIMEOUT), DEFAULT_TIMEOUT); | 307 | printf (_(UT_TIMEOUT), DEFAULT_TIMEOUT); |
308 | printf (" %s\n", _("Keep timeout lower than the plugin timeout to retain CRITICAL status.")); | ||
309 | |||
310 | printf(" -o,--ok=STATUS\n"); | ||
311 | printf(" -w,--warning=STATUS\n"); | ||
312 | printf(" -c,--critical=STATUS\n"); | ||
313 | printf(" -u,--unknown=STATUS\n"); | ||
314 | printf(_(" STATUS can be 'OK', 'WARNING', 'CRITICAL' or 'UNKNOWN' without single\n")); | ||
315 | printf(_(" quotes. Numeric values are accepted. If nothing is specified, permutes\n")); | ||
316 | printf(_(" OK and CRITICAL.\n")); | ||
256 | 317 | ||
257 | printf (" %s\n", _("[keep timeout than the plugin timeout to retain CRITICAL status]")); | ||
258 | printf ("\n"); | 318 | printf ("\n"); |
259 | printf ("%s\n", _("Examples:")); | 319 | printf ("%s\n", _("Examples:")); |
260 | printf (" %s\n", "negate /usr/local/nagios/libexec/check_ping -H host"); | 320 | printf (" %s\n", "negate /usr/local/nagios/libexec/check_ping -H host"); |
261 | printf (" %s\n", _("Run check_ping and invert result. Must use full path to plugin")); | 321 | printf (" %s\n", _("Run check_ping and invert result. Must use full path to plugin")); |
262 | printf (" %s\n", "negate /usr/local/nagios/libexec/check_procs -a 'vi negate.c'"); | 322 | printf (" %s\n", "negate -w OK -c UNKNOWN /usr/local/nagios/libexec/check_procs -a 'vi negate.c'"); |
263 | printf (" %s\n", _("Use single quotes if you need to retain spaces")); | 323 | printf (" %s\n", _("This will return OK instead of WARNING and UNKNOWN instead of CRITICAL")); |
264 | printf (_(UT_VERBOSE)); | ||
265 | printf ("\n"); | 324 | printf ("\n"); |
266 | printf ("%s\n", _("Notes:")); | 325 | printf ("%s\n", _("Notes:")); |
267 | printf ("%s\n", _("This plugin is a wrapper to take the output of another plugin and invert it.")); | 326 | printf ("%s\n", _("This plugin is a wrapper to take the output of another plugin and invert it.")); |
@@ -279,5 +338,5 @@ void | |||
279 | print_usage (void) | 338 | print_usage (void) |
280 | { | 339 | { |
281 | printf (_("Usage:")); | 340 | printf (_("Usage:")); |
282 | printf ("%s [-t timeout] <definition of wrapped plugin>\n",progname); | 341 | printf ("%s [-t timeout] [-owcu STATE] <definition of wrapped plugin>\n", progname); |
283 | } | 342 | } |