summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorerdgeist <>2013-09-26 00:55:59 +0000
committererdgeist <>2013-09-26 00:55:59 +0000
commitd28ba289468b13f205830dfffc1ac06bf49f8ecd (patch)
tree26edb54352a43cef5ec05a999eb9d72412ab2a59
parent54d0e9130b77332651a88a0eaa944e3789edccb1 (diff)
Fix syntax error for process config
-rwxr-xr-xminimunin4
1 files changed, 2 insertions, 2 deletions
diff --git a/minimunin b/minimunin
index 3a96ae0..9319f6b 100755
--- a/minimunin
+++ b/minimunin
@@ -307,8 +307,8 @@ graph_title Process Statistics
307 processes.label The number of processes in the system 307 processes.label The number of processes in the system
308 threads.label The number of threads in the system 308 threads.label The number of threads in the system
309 maxprocesses.label The maximum number of processes in the system 309 maxprocesses.label The maximum number of processes in the system
310 processes.warning $(( get_sys kern.maxproc * 92 / 100 )) 310 processes.warning $(( `get_sys kern.maxproc` * 92 / 100 ))
311 processes.critical $(( get_sys kern.maxproc * 98 / 100 )) 311 processes.critical $(( `get_sys kern.maxproc` * 98 / 100 ))
312EOF 312EOF
313;; 313;;
314*) 314*)