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@1270 61d68cd4-352d-0410-923a-c4978735b2b8
93 lines
4.5 KiB
PHP
93 lines
4.5 KiB
PHP
<?php
|
|
|
|
if($_SESSION['userlevel'] >= '5') {
|
|
$sql = "SELECT * FROM `sensors` AS S, `devices` AS D WHERE S.sensor_class='fanspeed' AND S.device_id = D.device_id ORDER BY D.hostname, S.sensor_descr";
|
|
} else {
|
|
$sql = "SELECT * FROM `sensors` AS S, `devices` AS D, devices_perms as P WHERE S.sensor_class='fanspeed' AND S.device_id = D.device_id AND D.device_id = P.device_id AND P.user_id = '" . $_SESSION['user_id'] . "' ORDER BY D.hostname, S.sensor_descr";
|
|
}
|
|
|
|
$query = mysql_query($sql);
|
|
|
|
echo('<table cellspacing="0" cellpadding="2" width="100%">');
|
|
|
|
echo('<tr class=tablehead>
|
|
<th width="280">Device</th>
|
|
<th width="280">Fan</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th width="100">Current</th>
|
|
<th width="100">Alert</th>
|
|
<th>Notes</th>
|
|
</tr>');
|
|
|
|
$row = 1;
|
|
|
|
while($fan = mysql_fetch_array($query))
|
|
{
|
|
if(is_integer($row/2)) { $row_colour = $list_colour_a; } else { $row_colour = $list_colour_b; }
|
|
|
|
$weekly_fan = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$week&to=$now&width=500&height=150";
|
|
$fan_popup = "<a onmouseover=\"return overlib('<img src=\'$weekly_fan\'>', LEFT);\" onmouseout=\"return nd();\">
|
|
" . $fan['sensor_descr'] . "</a>";
|
|
|
|
if($fan['sensor_current'] <= $fan['sensor_limit']) { $alert = '<img src="images/16/flag_red.png" alt="alert" />'; } else { $alert = ""; }
|
|
|
|
$fan_day = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$day&to=$now&width=300&height=100";
|
|
$fan_week = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$week&to=$now&width=300&height=100";
|
|
$fan_month = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$month&to=$now&width=300&height=100";
|
|
$fan_year = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$year&to=$now&width=300&height=100";
|
|
|
|
$fan_minigraph = "<img src='graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$day&to=$now&width=100&height=20'";
|
|
$fan_minigraph .= " onmouseover=\"return overlib('<div class=list-large>".$fan['hostname']." - ".$fan['sensor_descr'];
|
|
$fan_minigraph .= "</div><div style=\'width: 750px\'><img src=\'$fan_day\'><img src=\'$fan_week\'><img src=\'$fan_month\'><img src=\'$fan_year\'></div>', RIGHT".$config['overlib_defaults'].");\" onmouseout=\"return nd();\" >";
|
|
|
|
echo("<tr bgcolor=$row_colour>
|
|
<td class=list-bold>" . generatedevicelink($fan) . "</td>
|
|
<td>$fan_popup</td>
|
|
<td>$fan_minigraph</td>
|
|
<td width=100>$alert</td>
|
|
<td style='text-align: center; font-weight: bold;'>" . $fan['sensor_current'] . " rpm</td>
|
|
<td style='text-align: center'>" . $fan['sensor_limit'] . " rpm</td>
|
|
<td>" . (isset($fan['sensor_notes']) ? $fan['sensor_notes'] : '') . "</td>
|
|
</tr>\n");
|
|
|
|
if($_GET['optb'] == "graphs") { ## If graphs
|
|
|
|
echo("<tr bgcolor='$row_colour'><td colspan=6>");
|
|
|
|
$daily_graph = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$day&to=$now&width=211&height=100";
|
|
$daily_url = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$day&to=$now&width=400&height=150";
|
|
|
|
$weekly_graph = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$week&to=$now&width=211&height=100";
|
|
$weekly_url = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$week&to=$now&width=400&height=150";
|
|
|
|
$monthly_graph = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$month&to=$now&width=211&height=100";
|
|
$monthly_url = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$month&to=$now&width=400&height=150";
|
|
|
|
$yearly_graph = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$year&to=$now&width=211&height=100";
|
|
$yearly_url = "graph.php?id=" . $fan['sensor_id'] . "&type=fanspeed&from=$year&to=$now&width=400&height=150";
|
|
|
|
echo("<a onmouseover=\"return overlib('<img src=\'$daily_url\'>', LEFT);\" onmouseout=\"return nd();\">
|
|
<img src='$daily_graph' border=0></a> ");
|
|
echo("<a onmouseover=\"return overlib('<img src=\'$weekly_url\'>', LEFT);\" onmouseout=\"return nd();\">
|
|
<img src='$weekly_graph' border=0></a> ");
|
|
echo("<a onmouseover=\"return overlib('<img src=\'$monthly_url\'>', LEFT);\" onmouseout=\"return nd();\">
|
|
<img src='$monthly_graph' border=0></a> ");
|
|
echo("<a onmouseover=\"return overlib('<img src=\'$yearly_url\'>', LEFT);\" onmouseout=\"return nd();\">
|
|
<img src='$yearly_graph' border=0></a>");
|
|
echo("</td></tr>");
|
|
|
|
} # endif graphs
|
|
|
|
|
|
|
|
$row++;
|
|
|
|
}
|
|
|
|
echo("</table>");
|
|
|
|
|
|
?>
|
|
|