diff options
author | erdgeist <> | 2013-09-26 00:55:59 +0000 |
---|---|---|
committer | erdgeist <> | 2013-09-26 00:55:59 +0000 |
commit | d28ba289468b13f205830dfffc1ac06bf49f8ecd (patch) | |
tree | 26edb54352a43cef5ec05a999eb9d72412ab2a59 | |
parent | 54d0e9130b77332651a88a0eaa944e3789edccb1 (diff) |
Fix syntax error for process config
-rwxr-xr-x | minimunin | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 )) |
312 | EOF | 312 | EOF |
313 | ;; | 313 | ;; |
314 | *) | 314 | *) |