');
if (is_file($config['install_dir'] . "/html/pages/device/graphs/os-$os.inc.php")) {
include($config['install_dir'] . "/html/pages/device/graphs/os-$os.inc.php");
}
if ($os_groups[$device['os']]) { $os_group = $os_groups[$device['os']]; }
if (is_file($config['install_dir'] . "/html/pages/device/graphs/os-".$device['os'].".inc.php")) {
/// OS Specific
include($config['install_dir'] . "/html/pages/device/graphs/os-".$device['os'].".inc.php");
} elseif ($os_group && is_file($config['install_dir'] . "/html/pages/device/graphs/os-".$os_group.".inc.php")) {
/// OS Group Specific
include($config['install_dir'] . "/html/pages/device/graphs/os-".$os_group.".inc.php");
} else {
echo("No graph definitions found for OS " . $device['os'] . "!");
}
/**
if ($memgraph) {
echo("
");
}
if ($storagegraph) {
echo("$storagegraph");
}
if ($loadgraph) {
echo("
");
}
if ($tempgraph) {
echo("
");
}
if ($mailsgraph) {
echo("
");
}
if ($mailerrorgraph) {
echo("
");
}
if ($couriergraph) {
echo("
");
}
if ($ahitsgraph) {
echo("
");
}
if ($abitsgraph) {
echo("
");
}
if ($usersgraph) {
echo("
");
}
if ($procsgraph) {
echo("
");
}
if ($uptimegraph) {
echo("
");
}
**/
echo("");
}
?>