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@615 61d68cd4-352d-0410-923a-c4978735b2b8
38 lines
1.5 KiB
PHP
38 lines
1.5 KiB
PHP
<?php
|
|
|
|
echo("<table width=100%>");
|
|
|
|
$hrdevices = mysql_query("SELECT * FROM `hrDevice` WHERE `device_id` = '".$device['device_id']."'");
|
|
while($hrdevice = mysql_fetch_array($hrdevices)) {
|
|
|
|
echo("<tr><td>".$hrdevice['hrDeviceIndex']."</td>");
|
|
|
|
if($hrdevice['hrDeviceType'] == "hrDeviceProcessor") {
|
|
$proc_url = "?page=device/".$device['device_id']."/health/hrprocessors/";
|
|
$proc_popup = "onmouseover=\"return overlib('<div class=list-large>".$device['hostname']." - ".$hrdevice['hrDeviceDescr'];
|
|
$proc_popup .= "</div><img src=\'graph.php?id=" . $hrdevice['hrDevice_id'] . "&type=hrProcessor&from=$month&to=$now&width=400&height=125\'>";
|
|
$proc_popup .= "', RIGHT".$config['overlib_defaults'].");\" onmouseout=\"return nd();\"";
|
|
echo("<td><a href='#' $proc_popup>".$hrdevice['hrDeviceDescr']."</a></td>");
|
|
} elseif ($hrdevice['hrDeviceType'] == "hrDeviceNetwork") {
|
|
$int = str_replace("network interface ", "", $hrdevice['hrDeviceDescr']);
|
|
$interface = mysql_fetch_array(mysql_query("SELECT * FROM interfaces WHERE device_id = '".$device['device_id']."' AND ifDescr = '".$int."'"));
|
|
if($interface['ifIndex']) {
|
|
echo("<td>".generateiflink($interface)."</td>");
|
|
} else {
|
|
echo("<td>".$hrdevice['hrDeviceDescr']."</td>");
|
|
}
|
|
} else {
|
|
echo("<td>".$hrdevice['hrDeviceDescr']."</td>");
|
|
}
|
|
|
|
echo("<td>".$hrdevice['hrDeviceType']."</td><td>".$hrdevice['hrDeviceStatus']."</td>");
|
|
echo("<td>".$hrdevice['hrDeviceErrors']."</td><td>".$hrdevice['hrProcessorLoad']."</td>");
|
|
echo("</tr>");
|
|
|
|
}
|
|
|
|
echo("</table>");
|
|
|
|
?>
|
|
|