Set min value of 0 for munin graph render time spent by

This commit is contained in:
Kai Krueger
2013-08-29 00:35:39 -06:00
parent 3b2fcd5ba2
commit dc8d5e06d4

View File

@ -17,26 +17,31 @@ if [ "$1" = "config" ]; then
echo 'reqPrio.label Priority request queue'
echo 'reqPrio.type DERIVE'
echo 'reqPrio.cdef reqPrio,1000,/'
echo 'reqPrio.min 0'
echo 'reqPrio.draw AREA'
echo 'reqPrio.info Time for priority request queue'
echo 'req.label Request queue'
echo 'req.type DERIVE'
echo 'req.cdef req,1000,/'
echo 'req.min 0'
echo 'req.draw STACK'
echo 'req.info Time for Request queue'
echo 'reqLow.label Low priority request queue'
echo 'reqLow.type DERIVE'
echo 'reqLow.cdef reqLow,1000,/'
echo 'reqLow.min 0'
echo 'reqLow.draw STACK'
echo 'reqLow.info Time for low priority request queue'
echo 'dirty.label Dirty queue'
echo 'dirty.type DERIVE'
echo 'dirty.cdef dirty,1000,/'
echo 'dirty.min 0'
echo 'dirty.draw STACK'
echo 'dirty.info Time for dirty queue'
echo 'reqBulk.label Bulk queue'
echo 'reqBulk.type DERIVE'
echo 'reqBulk.cdef reqBulk,1000,/'
echo 'reqBulk.min 0'
echo 'reqBulk.draw STACK'
echo 'reqBulk.info Time for bulk queue'
exit 0