EOT; } function html_end() { echo <<Collectd Graph Panel is distributed under the GNU General Public License (GPL) EOT; } function host_summary($hosts) { global $CONFIG; $rrd = new RRDTool; echo "\n"; foreach($hosts as $host) { $rrd_info = $rrd->rrd_info($CONFIG['datadir'].'/'.$host.'/load/load.rrd'); if (!$rrd_info) continue; printf(''."\n", $CONFIG['weburl'],$host, $host, $rrd_info["ds[shortterm].last_ds"], $rrd_info["ds[midterm].last_ds"], $rrd_info["ds[longterm].last_ds"]); } echo "
%s%.2f%.2f%.2f
\n"; } ?>