diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2006-03-13 11:08:28 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2006-03-13 11:08:28 (GMT) |
commit | 5c0aa37260519e37feac734d52c1b9b63090d77f (patch) | |
tree | 651de835bfdee1acaee01ccc1670164eb1ff936d /plugins | |
parent | e340b0db7378741bd956409c7f1cda599f159a11 (diff) | |
download | monitoring-plugins-5c0aa37260519e37feac734d52c1b9b63090d77f.tar.gz |
Change warning message if there is stderr output. This catches a problem
where time was shifting backwards on a linux VMware guest during the ping
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1322 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_ping.c | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/plugins/check_ping.c b/plugins/check_ping.c index 1903678..a7b7d90 100644 --- a/plugins/check_ping.c +++ b/plugins/check_ping.c | |||
@@ -452,9 +452,22 @@ run_ping (const char *cmd, const char *addr) | |||
452 | rta = crta; | 452 | rta = crta; |
453 | 453 | ||
454 | /* check stderr, setting at least WARNING if there is output here */ | 454 | /* check stderr, setting at least WARNING if there is output here */ |
455 | while (fgets (buf, MAX_INPUT_BUFFER - 1, child_stderr)) | 455 | /* Add warning into warn_text */ |
456 | if (! strstr(buf,"WARNING - no SO_TIMESTAMP support, falling back to SIOCGSTAMP")) | 456 | while (fgets (buf, MAX_INPUT_BUFFER - 1, child_stderr)) { |
457 | result = max_state (STATE_WARNING, error_scan (buf, addr)); | 457 | if (! strstr(buf,"WARNING - no SO_TIMESTAMP support, falling back to SIOCGSTAMP")) { |
458 | if (verbose >= 3) { | ||
459 | printf("Got stderr: %s", buf); | ||
460 | } | ||
461 | if ((result=error_scan(buf, addr)) == STATE_OK) { | ||
462 | result = STATE_WARNING; | ||
463 | if (warn_text == NULL) { | ||
464 | warn_text = strdup(_("System call sent warnings to stderr ")); | ||
465 | } else { | ||
466 | asprintf(&warn_text, "%s %s", warn_text, _("System call sent warnings to stderr ")); | ||
467 | } | ||
468 | } | ||
469 | } | ||
470 | } | ||
458 | 471 | ||
459 | (void) fclose (child_stderr); | 472 | (void) fclose (child_stderr); |
460 | 473 | ||