diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-04 23:56:26 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2003-03-04 23:56:26 (GMT) |
commit | d714b3811dae812838c01b9b0bb1d766a62dcc2f (patch) | |
tree | 5a08b4b96243c0905d861b5a89625efbb9e230c7 /plugins/check_nt.c | |
parent | ee3a73bc338f3b763b5797bc90ca0c026d6504ce (diff) | |
download | monitoring-plugins-d714b3811dae812838c01b9b0bb1d766a62dcc2f.tar.gz |
Make output message for CPU Load a bit nicer
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@364 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_nt.c')
-rw-r--r-- | plugins/check_nt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_nt.c b/plugins/check_nt.c index b9aae1c..1c9dc0a 100644 --- a/plugins/check_nt.c +++ b/plugins/check_nt.c | |||
@@ -148,9 +148,9 @@ int main(int argc, char **argv){ | |||
148 | else if(utilization >= lvalue_list[1+offset] && return_code<STATE_WARNING) | 148 | else if(utilization >= lvalue_list[1+offset] && return_code<STATE_WARNING) |
149 | return_code=STATE_WARNING; | 149 | return_code=STATE_WARNING; |
150 | 150 | ||
151 | asprintf(&output_message," (%lu min. %lu%)",lvalue_list[0+offset], utilization); | 151 | asprintf(&output_message," %lu%% (%lu min average)", utilization, lvalue_list[0+offset]); |
152 | asprintf(&temp_string,"%s%s",temp_string,output_message); | 152 | asprintf(&temp_string,"%s%s",temp_string,output_message); |
153 | offset+=3; //move accross the array | 153 | offset+=3; //move across the array |
154 | } | 154 | } |
155 | if (strlen(temp_string)>10) { | 155 | if (strlen(temp_string)>10) { |
156 | // we had at least on loop | 156 | // we had at least on loop |