Creating and moving around new tower monitors for munin

This commit is contained in:
Matthew Jones
2014-07-30 16:57:43 -04:00
parent 67ddbd6fd6
commit 56255777bc
8 changed files with 109 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
#!/bin/sh
case $1 in
config)
cat <<'EOM'
graph_title Task Manager Processes
graph_vlabel num processes
graph_category tower
taskm.label Task Manager Processes
taskm.type DERIVE
EOM
exit 0;;
esac
printf "taskm.value "
ps ax | grep run_task_system | grep -v grep | wc -l
printf "\n"