1
0
Fork 0
mirror of https://github.com/munin-monitoring/contrib.git synced 2025-07-21 18:41:03 +00:00

Category Tree: reduce number of categories

This commit is contained in:
dipohl 2017-02-22 04:04:04 +01:00
parent a3c2338b1f
commit 84c28707eb
20 changed files with 22 additions and 26 deletions

View file

@ -68,7 +68,7 @@ if [ "$1" = "config" ]; then
echo "graph_vlabel VMs"
echo "graph_scale no"
echo "graph_info Shows slot activity from condor_status."
echo "graph_category Condor"
echo "graph_category htc"
echo "graph_period second"
echo "idl.label Idle"
echo "idl.draw AREA"

View file

@ -68,7 +68,7 @@ if [ "$1" = "config" ]; then
echo 'graph_vlabel MIPS, MFLOPS'
echo 'graph_scale no'
echo 'graph_info Shows MIPS and MFLOPS from condor_status.'
echo 'graph_category Condor'
echo 'graph_category htc'
echo 'graph_period second'
echo 'mips_cur.label MIPS claimed'
echo 'mips_cur.draw LINE2'
@ -108,4 +108,3 @@ eval $CS $CONS -totals -server | awk 'BEGIN { mipsc=0; mflopsc=0 } /Total/ {mips
# Machines MIPS KFLOPS AvgLoadAvg
# Total 28 104576 29093286 0.960
eval $CS $CONS -totals -server -claimed | awk 'BEGIN { mipsc=0; mflopsc=0 } /Total/ { mipsc = $3; kflopsc = $4; mflopsc = int(kflopsc/1000) } END {print "mips_cur.value " mipsc "\nmflops_cur.value " mflopsc}'

View file

@ -70,7 +70,7 @@ if [ "$1" = "config" ]; then
echo "graph_vlabel Jobs"
echo "graph_scale no"
echo "graph_info Shows global Condor queue from condor_q -g."
echo "graph_category Condor"
echo "graph_category htc"
echo "graph_period second"
echo "held.label Held"
echo "held.draw AREA"
@ -93,4 +93,3 @@ fi
# example: 3076 jobs; 3052 idle, 24 running, 0 held
$CQ -g $OPTIONS | tail -n1 | awk '{print "queue.value " $1 "\nheld.value " $7 "\nrunning.value " $5 "\nidle.value " $3}'

View file

@ -67,7 +67,7 @@ if [ "$1" = "config" ]; then
echo 'graph_vlabel VMs'
echo 'graph_scale no'
echo 'graph_info Shows Condor slot states from condor_status.'
echo 'graph_category Condor'
echo 'graph_category htc'
echo 'graph_period second'
echo 'Preempting.label Preempting'
echo 'Preempting.draw AREA'
@ -98,4 +98,3 @@ fi
# x86_64/LINUX 8 0 8 0 0 0 0
# Total 30 1 26 3 0 0 0
eval $CS $CONS -total | awk '/Total / {print "Preempting.value " $7 "\nClaimed.value " $4 "\nMatched.value " $6 "\nUnclaimed.value " $5 "\nOwner.value " $3 }'