Hi,<br><br>    How do you go about getting a summary report of clients that a Hobbit server is  monitoring and being reported.<br><br>For example, <br>1. how many full clients are there (or how many is a hobbit server receiving data)?<br>
2. how many client-less clients are there (no clients, only pings)?<br><br>My ad-hoc/convoluted approach:<br># FULL clients are those sending data and updating netstat.rrd files:<br>cd $HOME/data/rrd<br>ls -t */netstat.rrd > file<br>
newer_files  file  TODAY > full_client_list<br><br># client-less are those with up-to-date tcp.conn.rrd files<br>ls -t */tcp.conn.rrd > file<br>
newer_files  file  TODAY > all_active (full + client_less)<br>client_less_list = all_active - full_client_list<br><br>Thank you,<br>Ye-fee<br>
<br><br><br>