2010-02-13 21:45:39 +00:00
|
|
|
<?php
|
|
|
|
|
2010-07-24 19:14:41 +00:00
|
|
|
$graph_type = "processor_usage";
|
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
echo("<div style='margin-top: 5px; padding: 0px;'>");
|
|
|
|
echo("<table width=100% cellpadding=6 cellspacing=0>");
|
2011-03-16 23:10:10 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
$i = '1';
|
2011-05-16 11:01:48 +00:00
|
|
|
foreach (dbFetchRows("SELECT * FROM `processors` WHERE device_id = ?", array($device['device_id'])) as $proc)
|
2011-03-16 23:10:10 +00:00
|
|
|
{
|
2011-04-15 17:22:35 +00:00
|
|
|
$proc_url = "device/".$device['device_id']."/health/processor/";
|
2010-02-13 21:45:39 +00:00
|
|
|
|
2011-03-28 09:11:05 +00:00
|
|
|
$mini_url = "graph.php?id=".$proc['processor_id']."&type=".$graph_type."&from=".$day."&to=".$now."&width=80&height=20&bg=f4f4f4";
|
2010-02-24 02:16:56 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
$text_descr = $proc['processor_descr'];
|
2010-07-08 23:21:30 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
$text_descr = rewrite_entity_descr($text_descr);
|
2010-02-24 02:16:56 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
$proc_popup = "onmouseover=\"return overlib('<div class=list-large>".$device['hostname']." - ".$text_descr;
|
2011-03-28 09:11:05 +00:00
|
|
|
$proc_popup .= "</div><img src=\'graph.php?id=" . $proc['processor_id'] . "&type=".$graph_type."&from=$month&to=$now&width=400&height=125\'>";
|
2010-07-25 14:21:05 +00:00
|
|
|
$proc_popup .= "', RIGHT".$config['overlib_defaults'].");\" onmouseout=\"return nd();\"";
|
2010-02-13 21:45:39 +00:00
|
|
|
|
2011-04-25 17:15:36 +00:00
|
|
|
$percent = round($proc['processor_usage']);
|
2010-02-24 02:16:56 +00:00
|
|
|
|
2011-04-25 17:15:36 +00:00
|
|
|
$background = get_percentage_colours($percent);
|
2010-02-24 02:16:56 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
echo("<tr bgcolor=$row_colour>
|
|
|
|
<td class=tablehead><a href='".$proc_url."' $proc_popup>" . $text_descr . "</a></td>
|
|
|
|
<td width=90><a href='".$proc_url."' $proc_popup><img src='$mini_url'></a></td>
|
|
|
|
<td width=200><a href='".$proc_url."' $proc_popup>
|
2011-04-25 17:15:36 +00:00
|
|
|
".print_percentage_bar (400, 20, $percent, $percent."%", "ffffff", $background['left'], (100 - $percent)."%" , "ffffff", $background['right'])."
|
2010-07-25 14:21:05 +00:00
|
|
|
</a></td>
|
|
|
|
</tr>");
|
2010-02-24 02:16:56 +00:00
|
|
|
|
2010-02-13 21:45:39 +00:00
|
|
|
echo("<tr bgcolor='$row_colour'><td colspan=5>");
|
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
$graph_array['id'] = $proc['processor_id'];
|
|
|
|
$graph_array['type'] = $graph_type;
|
2010-02-13 21:45:39 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
include("includes/print-quadgraphs.inc.php");
|
|
|
|
}
|
2010-02-13 21:45:39 +00:00
|
|
|
|
2010-07-25 14:21:05 +00:00
|
|
|
echo("</table>");
|
|
|
|
echo("</div>");
|
2010-02-13 21:45:39 +00:00
|
|
|
|
2011-04-25 17:15:36 +00:00
|
|
|
?>
|