<div>Hi,</div>
<div> </div>
<div>Well, Im getting data every second now so thats good.</div>
<div> </div>
<div>I was trying to just get all the same data as netstat, but for some reason, the rrd is</div>
<div>only populated by "echo". im guessing because in the output from netstat -s, echo</div>
<div>is the only thing that has name: number (this is an AIX box BTW) so how </div>
<div>is hobbit doing it normally then for the rrd on the other side to work correctly?</div>
<div> </div>
<div>-Jeff<br><br> </div>
<div><span class="gmail_quote">On 1/19/06, <b class="gmail_sendername">Henrik Stoerner</b> <<a href="mailto:henrik@hswn.dk">henrik@hswn.dk</a>> wrote:</span>
<blockquote class="gmail_quote" style="PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid">On Wed, Jan 18, 2006 at 10:33:15PM -0600, Jeff Newman wrote:<br><br>> Question about the INTERVAL setting in 
clientlaunch.cfg:<br>><br>> Per the man page (for hobbitlaunch.cfg)<br>><br>> The *INTERVAL* keyword defines how often this command is executed. {...}<br>> Intervals can be specified in seconds (if you just put a number there), or
<br>> in minutes (5m), hours (2h), or days (1d).<br>><br>> So I was trying to get netstat -s working every second.<br>><br>> [hiflow_net]<br>>         ENVFILE /usr/local/hobbit/client/etc/hobbitclient.cfg
<br>>         CMD /usr/local/hobbit/client/ext/hiflow_net<br>>         LOGFILE=/tmp/hilog<br>>         INTERVAL 1<br><br>hobbitlaunch has a built-in safety catch, so you cannot run a<br>task more often than once every 5-10 seconds. That's to prevent
<br>it from fork-bombing your system.<br><br>If you really need that, use a wrapper around your script:<br><br>  #!/bin/sh<br><br>  while 1<br>  do<br>      /usr/local/hobbit/client/ext/hiflow_net<br>      sleep 1<br>  done
<br><br>and run the wrapper-script from hobbitlaunch (without any<br>INTERVAL setting since it keeps running).<br><br><br>Henrik<br><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>