I don't know if there's a way to do that with Xymon configs so, until one of our graph wizards come up with an answer, you could look into doing it the hard(er) way...  If you script the graph generation to drop graphs somewhere in your web server's htdocs tree, you could follow up with a status report to xymon containing links to the images.  Something similar to this:<div>
<br></div><div>   #!/bin/bash</div><div><br></div><div>   /usr/bin/rrdtool graph /var/www/server/htdocs/graphs/volX.png \</div><div>     DEF:xxx......</div><div>     LINE:xxx.....</div><div>     etc</div><div><br></div><div>
   /home/xymon/server/bin/bb localhost "status server.vols green `date`</div><div>   <img src=......>"</div><div><br></div><div>Run that out of cron every few minutes.  It would take a bit more work to add the zoom functions and the ability to click through to get longer time-span graphs, but at least you'd have something...</div>
<div><br></div><div>I've done something similar to this at work because I can't install Xymon...  :(</div><div><br></div><div>Ralph Mitchell<br><br></div><div><br><div class="gmail_quote">On Tue, Jul 6, 2010 at 4:04 AM, Vernon Everett <span dir="ltr"><<a href="mailto:everett.vernon@gmail.com">everett.vernon@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">Hi all<br>
<br>
OK, I am probably pushing the envelope here, but maybe it's possible.<br>
<br>
Lets assume I am collecting data about some disks.<br>
Or maybe we don't assume. I am doing it.<br>
As data, I am collecting<br>
    % Cache hits<br>
    % Reads<br>
    % Writes<br>
Using split NCV, I get a bunch of files.<br>
cache,vol01.rrd<br>
cache,vol02.rrd<br>
cache,vol03.rrd<br>
cache,vol04.rrd<br>
read,vol01.rrd<br>
read,vol02.rrd<br>
read,vol03.rrd<br>
read,vol04.rrd<br>
write,vol01.rrd<br>
write,vol02.rrd<br>
write,vol03.rrd<br>
write,vol04.rrd<br>
<br>
Using the standard graph definitions, I can get all the cache values<br>
on one graph, all the read values on another etc. etc.<br>
Is there a way to group them by the volume name?<br>
So I end up with a graph of cache, read and write for vol1 on one graph.<br>
The cache, read and write for vol1 on another etc. etc.<br>
<br>
Of course, in reality, I have far more than vol01-04, and they are not<br>
all volXX either, so hard coding the hobbitgraph.cfg entry isn't an<br>
option.<br>
<br>
Possible?<br>
<br>
Regards<br>
     Vernon.<br>
<br>
To unsubscribe from the hobbit list, send an e-mail to<br>
<a href="mailto:hobbit-unsubscribe@hswn.dk">hobbit-unsubscribe@hswn.dk</a><br>
<br>
<br>
</blockquote></div><br></div>