Xymon Mailing List Archive search

Graph help

list James Wade
Mon, 31 Dec 2007 10:59:04 -0600
Message-Id: <03cd01c84bce$74c6c930$user-96ebcf3887e7@xymon.invalid>

Hello,

 
I have sar data coming into hobbit, and I can graph the data

just fine. I've create a multi-cpu graph, and a cpu utilization graph.

 
However, I want to see a graph for just wait time, and mult-wait time.

I can't see anything though. Here's my definitions:

 
hostgraphs_form:

 
          <option value="iowait">IOWAIT </option>

          <option value="iowait">IOWAIT (multi) </option>

 
hobbitgraph.cfg:

 
[iowait]

        TITLE IOWAIT info

        YAXIS % Load

        -u 100

        -r

        DEF:wio=sar.rrd:wio:AVERAGE

        STACK:wio#774400:Wait

        COMMENT:\n

        GPRINT:wio:LAST:WIO CPU \: %5.1lf (cur)

        GPRINT:wio:MAX: \: %5.1lf (max)

        GPRINT:wio:MIN: \: %5.1lf (min)

        GPRINT:wio:AVERAGE: \: %5.1lf (avg)\n

 
[iowait-multi]

        TITLE Multi-host IOWAIT info

        YAXIS % Used

        FNPATTERN sar.rrd

        -u 100

        -r

        DEF:wio at RRDIDX@=@RRDFN@:wio:AVERAGE

        CDEF:pbusy at RRDIDX@=100,wio at RRDIDX@

        LINE2:pbusy at RRDIDX@#@COLOR@:@RRDPARAM@

        GPRINT:pbusy at RRDIDX@:LAST: \: %5.1lf (cur)

        GPRINT:pbusy at RRDIDX@:MAX: \: %5.1lf (max)

        GPRINT:pbusy at RRDIDX@:MIN: \: %5.1lf (min)

        GPRINT:pbusy at RRDIDX@:AVERAGE: \: %5.1lf (avg)\n

 
What am I missing?

 
Thanks.James