summaryrefslogtreecommitdiffstats
path: root/plugins/check_nt.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@aei.ca>2010-10-13 04:10:25 (GMT)
committerThomas Guyot-Sionnest <dermoth@aei.ca>2010-10-15 05:52:29 (GMT)
commit6989366b8d3ccd03b428610ca059f22be724f8be (patch)
treeebff640cdd0b66588f17713f3648fccb329143f9 /plugins/check_nt.c
parent654086f1117ee22d9f7e8270330daff6c463c9ad (diff)
downloadmonitoring-plugins-6989366b8d3ccd03b428610ca059f22be724f8be.tar.gz
check_nt: make UPTIME accept warning/critical levels
Patch originally by Ryan Kelly
Diffstat (limited to 'plugins/check_nt.c')
-rw-r--r--plugins/check_nt.c7
1 files changed, 6 insertions, 1 deletions
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){
203 uphours = (uptime % 86400) / 3600; 203 uphours = (uptime % 86400) / 3600;
204 upminutes = ((uptime % 86400) % 3600) / 60; 204 upminutes = ((uptime % 86400) % 3600) / 60;
205 asprintf(&output_message,_("System Uptime - %u day(s) %u hour(s) %u minute(s)"),updays,uphours, upminutes); 205 asprintf(&output_message,_("System Uptime - %u day(s) %u hour(s) %u minute(s)"),updays,uphours, upminutes);
206 return_code=STATE_OK; 206 if (check_critical_value==TRUE && uptime <= critical_value)
207 return_code=STATE_CRITICAL;
208 else if (check_warning_value==TRUE && uptime <= warning_value)
209 return_code=STATE_WARNING;
210 else
211 return_code=STATE_OK;
207 break; 212 break;
208 213
209 case CHECK_USEDDISKSPACE: 214 case CHECK_USEDDISKSPACE: