mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
git-svn-id: http://www.observium.org/svn/observer/trunk@430 61d68cd4-352d-0410-923a-c4978735b2b8
35 lines
1.4 KiB
PHP
35 lines
1.4 KiB
PHP
<?php // vim:fenc=utf-8:filetype=php:ts=4
|
|
|
|
$temp = mysql_result(mysql_query("select count(*) from temperature WHERE temp_host = '" . $device['device_id'] . "'"), 0);
|
|
$storage = mysql_result(mysql_query("select count(*) from storage WHERE host_id = '" . $device['device_id'] . "'"), 0);
|
|
$cemp = mysql_result(mysql_query("select count(*) from cempMemPool WHERE device_id = '" . $device['device_id'] . "'"), 0);
|
|
$cpm = mysql_result(mysql_query("select count(*) from cpmCPU WHERE device_id = '" . $device['device_id'] . "'"), 0);
|
|
|
|
if($temp) { $datas[] = 'temp'; }
|
|
if($storage) { $datas[] = 'storage'; }
|
|
if($cemp) { $datas[] = 'cemp'; }
|
|
if($cpm) { $datas[] = 'cpm'; }
|
|
|
|
$type_text['temp'] = "Temperatures";
|
|
$type_text['cemp'] = "Memory Pools";
|
|
$type_text['cpm'] = "Processor Usage";
|
|
$type_text['storage'] = "Disk Usage";
|
|
|
|
echo("<div style='width: auto; text-align: right; padding: 10px; display:block; background-color: #eeeeee;'>");
|
|
unset ($sep);
|
|
foreach ($datas as $type) {
|
|
if(!$_GET['opta']) { $_GET['opta'] = $type; }
|
|
echo($sep);
|
|
if($_GET['opta'] == $type) { echo("<strong>"); }
|
|
echo("<a href='".$config['base_url']."/device/" . $device['device_id'] . "/health/" . $type . "/'>" . $type_text[$type] ."</a>\n");
|
|
if($_GET['opta'] == $type) { echo("</strong>"); }
|
|
$sep = ' | ';
|
|
}
|
|
unset ($sep);
|
|
echo("</div>");
|
|
|
|
if(is_file("pages/device/health/".mres($_GET['opta']).".inc.php")) { include("pages/device/health/".mres($_GET['opta']).".inc.php"); }
|
|
|
|
|
|
?>
|