diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | plugins/check_users.c | 4 |
2 files changed, 5 insertions, 2 deletions
@@ -1,5 +1,8 @@ | |||
1 | This file documents the major additions and syntax changes between releases. | 1 | This file documents the major additions and syntax changes between releases. |
2 | 2 | ||
3 | 1.4.14 ... | ||
4 | check_users thresholds were not working excatly as documented (>= rather than >) | ||
5 | |||
3 | 1.4.13 25th Sept 2008 | 6 | 1.4.13 25th Sept 2008 |
4 | Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen) | 7 | Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen) |
5 | Optimised pst3 for systems with large number of processes (Duncan Ferguson) | 8 | Optimised pst3 for systems with large number of processes (Duncan Ferguson) |
diff --git a/plugins/check_users.c b/plugins/check_users.c index e4ef681..4e7e9a2 100644 --- a/plugins/check_users.c +++ b/plugins/check_users.c | |||
@@ -108,9 +108,9 @@ main (int argc, char **argv) | |||
108 | result = possibly_set (result, STATE_UNKNOWN); | 108 | result = possibly_set (result, STATE_UNKNOWN); |
109 | 109 | ||
110 | /* else check the user count against warning and critical thresholds */ | 110 | /* else check the user count against warning and critical thresholds */ |
111 | if (users >= cusers) | 111 | if (users > cusers) |
112 | result = STATE_CRITICAL; | 112 | result = STATE_CRITICAL; |
113 | else if (users >= wusers) | 113 | else if (users > wusers) |
114 | result = STATE_WARNING; | 114 | result = STATE_WARNING; |
115 | else if (users >= 0) | 115 | else if (users >= 0) |
116 | result = STATE_OK; | 116 | result = STATE_OK; |