Hi all,<br><br>Before posting I carefully read the all the docs I could find on the matter, FAQs, HOWTOs, and the following strings:<br><br><a href="http://www.hswn.dk/hobbiton/2006/10/msg00318.html" target="_blank">http://www.hswn.dk/hobbiton/2006/10/msg00318.html</a><br>

<br><a href="http://www.hswn.dk/hobbiton/2006/10/msg00326.html" target="_blank">http://www.hswn.dk/hobbiton/2006/10/msg00326.html</a><br><br><a href="http://www.hswn.dk/hobbiton/2008/09/msg00244.html" target="_blank">http://www.hswn.dk/hobbiton/2008/09/msg00244.html</a><br>

<br><a href="http://www.hswn.dk/hobbiton/2008/09/msg00265.html" target="_blank">http://www.hswn.dk/hobbiton/2008/09/msg00265.html</a><br clear="all"><br><br>So, I was able to slowly and painfully crawl along and write a couple of "hello world" scripts. <br>

<br>My server "ps" looks like this:<br><br>ezio# ps -ef | grep hobbitd_rrd | grep -v grep | grep -v hobbitd_channel<br>hobbit    7929  7928  0 16:08 ?        00:00:00 hobbitd_rrd --rrddir=/var/lib/hobbit/rrd<br>

hobbit    7954  7953  0 16:08 ?        00:00:00 hobbitd_rrd --rrddir=/var/lib/hobbit/rrd --extra-script=/usr/lib/hobbit/server/ext/rrd_mon.sh --extra-tests=iostat --debug<br><br>Notice the "=" sign is there between  --extra-script and the actual script name (see <a href="http://www.hswn.dk/hobbiton/2008/09/msg00357.html" target="_blank">http://www.hswn.dk/hobbiton/2008/09/msg00357.html</a>)<br>

<br>My extra script is so trivial I'm ashamed to post it, but it's good to check if it is going to be executed at all:<br><br>#!/bin/bash<br><br>TMPLOG="/tmp/$1.$2.out.$$"<br>date >> $TMPLOG<br>echo "$1, $2, $3" >> $TMPLOG<br>

cp $3 >> $TMPLOG 2>&1<br>exit 0<br><br>OK, nothing is created in /tmp, so, I'm assuming hobbit_rrd is NOT executing my extra script.<br>Turning on the "--debug" option did not help much<br><br>
What am I missing? Should I put all the fancy  RRD-formatted-colon-separated "echoes" in my extra-script? (I wouldn't say so)<br><br>Ciao,<br><br>              Ezio<br>