<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Thank you Mike! But... that configuration made my bb-hosts too messy...
because i have custom server-side scripts and tests for each server, in
these cases the ".default." doesn't work...<br>
<br>
But, i made a different solution:<br>
for NAME in $(find /home/hobbit/data/rrd/ -name "netstat.rrd"); do<br>
        FILE="$(echo ${NAME} | sed 's/netstat/netstat1/')"<br>
        ln -s ${NAME} ${FILE}<br>
        FILE="$(echo ${NAME} | sed 's/netstat/netstat2/')"<br>
        ln -s ${NAME} ${FILE}<br>
        FILE="$(echo ${NAME} | sed 's/netstat/netstat3/')"<br>
        ln -s ${NAME} ${FILE}<br>
done<br>
<br>
for NAME in $(find /home/hobbit/data/rrd/ -name "vmstat.rrd"); do<br>
        FILE="$(echo ${NAME} | sed 's/vmstat/vmstat3/')"<br>
        ln -s ${NAME} ${FILE}<br>
        FILE="$(echo ${NAME} | sed 's/vmstat/vmstat5/')"<br>
        ln -s ${NAME} ${FILE}<br>
done<br>
<br>
Symlinking the rrdfile i don't need to configure anything... Its ugly
but is works, lol.<br>
<br>
Cheers<br>
<br>
<pre class="moz-signature" cols="72">Giovanni M. Frainer</pre>
<br>
<br>
Mike Arnold wrote:
<blockquote
 cite="mid65514.205.141.66.16.1180996013.squirrel@www.razorsedge.org"
 type="cite">
  <pre wrap="">Giovanni - Gestor Redix wrote:
  </pre>
  <blockquote type="cite">
    <pre wrap="">Hi everyone
    Has anyone made the vmstat/netstat graphs to work ? At the time,
just [vmstat] graph appears in trends page... but if i select the graph
manually, it appears correctly... Any idea why ?

    Maybe i need to do something in hobbitserver.cfg besides just add
GRAPHS="...,vmstat2,vmstat3,netstat3,..."

    </pre>
  </blockquote>
  <pre wrap=""><!---->
man bb-hosts
/TRENDS
/\.default\.

In bb-hosts:
# This will set all hosts to display the normal trend graphs, vmstat[23]
# and netstat3.
0.0.0.0 .default. #
TRENDS:*vmstat:vmstat1|vmstat2|vmstat3,netstat:netstat1|netstat3

  </pre>
</blockquote>
</body>
</html>