[nagiosplug] check_nt: make UPTIME accept warning/critical ...

Thomas Guyot-Sionnest dermoth at users.sourceforge.net
Fri Oct 15 07:53:51 CEST 2010


 Module: nagiosplug
 Branch: master
 Commit: 6989366b8d3ccd03b428610ca059f22be724f8be
 Author: Thomas Guyot-Sionnest <dermoth at aei.ca>
   Date: Wed Oct 13 00:10:25 2010 -0400
    URL: http://nagiosplug.git.sf.net/git/gitweb.cgi?p=nagiosplug/nagiosplug;a=commit;h=6989366

check_nt: make UPTIME accept warning/critical levels

Patch originally by Ryan Kelly

---

 THANKS.in          |    1 +
 plugins/check_nt.c |    7 ++++++-
 2 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/THANKS.in b/THANKS.in
index 6666de4..ac2b1c2 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -265,3 +265,4 @@ Dann Frazier
 Stephane Chazelas
 Craig Leres
 Brian Landers
+Ryan Kelly
diff --git a/plugins/check_nt.c b/plugins/check_nt.c
index 32d4ff6..60806bb 100644
--- a/plugins/check_nt.c
+++ b/plugins/check_nt.c
@@ -203,7 +203,12 @@ int main(int argc, char **argv){
 		uphours = (uptime % 86400) / 3600;
 		upminutes = ((uptime % 86400) % 3600) / 60;
 		asprintf(&output_message,_("System Uptime - %u day(s) %u hour(s) %u minute(s)"),updays,uphours, upminutes);
-		return_code=STATE_OK;
+		if (check_critical_value==TRUE && uptime <= critical_value)
+			return_code=STATE_CRITICAL;
+		else if (check_warning_value==TRUE && uptime <= warning_value)
+			return_code=STATE_WARNING;
+		else
+			return_code=STATE_OK;
 		break;
 
 	case CHECK_USEDDISKSPACE:





More information about the Commits mailing list