Files
librenms-librenms/html/pages/device/overview/processors.inc.php

120 lines
4.5 KiB
PHP
Raw Normal View History

<?php
2015-07-13 20:10:26 +02:00
$processors = dbFetchRows('SELECT * FROM `processors` WHERE device_id = ?', array($device['device_id']));
2015-07-13 20:10:26 +02:00
if (count($processors)) {
echo '<div class="container-fluid ">
<div class="row">
<div class="col-md-12 ">
<div class="panel panel-default panel-condensed">
<div class="panel-heading">
2015-11-20 15:40:57 +00:00
';
2015-07-13 20:10:26 +02:00
echo '<a href="device/device='.$device['device_id'].'/tab=health/metric=processor/">';
echo "<img src='images/icons/processor.png'> <strong>Processors</strong></a>";
2015-11-20 15:40:57 +00:00
echo '</div>
<table class="table table-hover table-condensed table-striped">';
$graph_array = array();
$graph_array['to'] = $config['time']['now'];
$graph_array['type'] = 'processor_usage';
$graph_array['from'] = $config['time']['day'];
$graph_array['legend'] = 'no';
$totalPercent=0;
2015-07-13 20:10:26 +02:00
foreach ($processors as $proc) {
$text_descr = rewrite_entity_descr($proc['processor_descr']);
$percent = $proc['processor_usage'];
2015-11-20 15:48:44 +00:00
if ($config['cpu_details_overview'] === true)
{
2015-11-20 15:40:57 +00:00
$background = get_percentage_colours($percent);
$graph_array['id'] = $proc['processor_id'];
//Generate tooltip graphs
$graph_array['height'] = '100';
$graph_array['width'] = '210';
2015-11-20 15:40:57 +00:00
$link_array = $graph_array;
2015-11-20 15:48:44 +00:00
$link_array['page'] = 'graphs';
2015-11-20 15:40:57 +00:00
unset($link_array['height'], $link_array['width'], $link_array['legend']);
2015-11-20 15:48:44 +00:00
$link = generate_url($link_array);
2015-11-20 15:40:57 +00:00
$overlib_content = generate_overlib_content($graph_array, $device['hostname'].' - '.$text_descr);
//Generate the minigraph
2015-11-20 15:48:44 +00:00
$graph_array['width'] = 80;
2015-11-20 15:40:57 +00:00
$graph_array['height'] = 20;
$graph_array['bg'] = 'ffffff00'; // the 00 at the end makes the area transparent.
2015-11-20 15:48:44 +00:00
$minigraph = generate_lazy_graph_tag($graph_array);
2015-11-20 15:40:57 +00:00
echo '<tr>
2015-11-20 15:48:44 +00:00
<td>'.overlib_link($link, $text_descr, $overlib_content).'</td>
2015-11-20 15:40:57 +00:00
<td>'.overlib_link($link, $minigraph, $overlib_content).'</td>
2015-11-20 15:48:44 +00:00
<td>'.overlib_link($link, print_percentage_bar(200, 20, $percent, null, 'ffffff', $background['left'], $percent.'%', 'ffffff', $background['right']), $overlib_content).'
2015-11-20 15:40:57 +00:00
</a></td>
2015-11-20 15:48:44 +00:00
</tr>';
}
else {
$totalPercent = $totalPercent + $percent;
}
}//end foreach
if ($config['cpu_details_overview'] === false)
{
if($_SESSION['screen_width']) {
if($_SESSION['screen_width'] > 970) {
2015-12-21 13:26:48 +00:00
$graph_array['width'] = round(($_SESSION['screen_width'] - 390 )/2,0);
$graph_array['height'] = round($graph_array['width'] /3);
2015-12-21 13:26:48 +00:00
$graph_array['lazy_w'] = $graph_array['width'] + 80;
}
else {
2015-12-21 13:26:48 +00:00
$graph_array['width'] = $_SESSION['screen_width'] - 190;
$graph_array['height'] = round($graph_array['width'] /3);
2015-12-21 13:26:48 +00:00
$graph_array['lazy_w'] = $graph_array['width'] + 80;
}
}
//Generate average cpu graph
$graph_array['device'] = $device['device_id'];
$graph_array['type'] = 'device_processor';
$graph = generate_lazy_graph_tag($graph_array);
2015-07-13 20:10:26 +02:00
//Generate link to graphs
2015-07-13 20:10:26 +02:00
$link_array = $graph_array;
$link_array['page'] = 'graphs';
unset($link_array['height'], $link_array['width']);
2015-07-13 20:10:26 +02:00
$link = generate_url($link_array);
//Generate tooltip
$graph_array['width']=210;
$graph_array['height']=100;
$overlib_content = generate_overlib_content($graph_array, $device['hostname'].' - CPU usage');
2015-07-13 20:10:26 +02:00
echo '<tr>
<td colspan="4">';
echo overlib_link($link, $graph, $overlib_content, null);
echo ' </td>
</tr>';
//Add a row with CPU desc, count and percent graph
2015-11-20 15:48:44 +00:00
$totalPercent=$totalPercent/count($processors);
$background = get_percentage_colours($totalPercent);
2015-11-20 15:48:44 +00:00
echo '<tr>
<td>'.overlib_link($link, $text_descr, $overlib_content).'</td>
<td>'.overlib_link($link,'x'.count($processors),$overlib_content).'</td>
2015-11-20 15:48:44 +00:00
<td>'.overlib_link($link, print_percentage_bar(200, 20, $totalPercent, null, 'ffffff', $background['left'], $percent.'%', 'ffffff', $background['right']), $overlib_content).'</td>
</tr>';
}
2015-07-13 20:10:26 +02:00
echo '</table>
</div>
</div>
</div>
2015-07-13 20:10:26 +02:00
</div>';
}//end if