Files

79 lines
2.9 KiB
PHP
Raw Permalink Normal View History

2009-11-11 18:20:32 +00:00
<?php
2019-05-23 09:58:43 -05:00
use LibreNMS\Util\ObjectCache;
if (ObjectCache::portCounts(['total'], $device['device_id'])['total'] > 0) {
2015-07-13 20:10:26 +02:00
echo '<div class="row">
2014-02-26 22:33:45 +00:00
<div class="col-md-12">
<div class="panel panel-default panel-condensed">
<div class="panel-heading">
<i class="fa fa-road fa-lg icon-theme" aria-hidden="true"></i><strong> Overall Traffic</strong>
2014-02-26 22:33:45 +00:00
</div>
2015-07-13 20:10:26 +02:00
<table class="table table-hover table-condensed table-striped">';
2010-03-14 01:38:43 +00:00
if ($screen_width = Session::get('screen_width')) {
if ($screen_width > 970) {
$graph_array['width'] = round(($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;
2016-08-18 20:28:22 -05:00
} else {
$graph_array['width'] = $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;
}
}
2019-06-23 00:29:12 -05:00
$graph_array['to'] = \LibreNMS\Config::get('time.now');
2015-07-13 20:10:26 +02:00
$graph_array['device'] = $device['device_id'];
$graph_array['type'] = 'device_bits';
2019-06-23 00:29:12 -05:00
$graph_array['from'] = \LibreNMS\Config::get('time.day');
2015-07-13 20:10:26 +02:00
$graph_array['legend'] = 'no';
2015-07-16 12:42:58 -04:00
$graph = generate_lazy_graph_tag($graph_array);
2010-03-14 01:38:43 +00:00
#Generate tooltip
$graph_array['width'] = 210;
$graph_array['height'] = 100;
2015-07-13 20:10:26 +02:00
$link_array = $graph_array;
$link_array['page'] = 'graphs';
unset($link_array['height'], $link_array['width']);
$link = generate_url($link_array);
2011-09-17 19:14:44 +00:00
2015-07-13 20:10:26 +02:00
$graph_array['width'] = '210';
$overlib_content = generate_overlib_content($graph_array, $device['hostname'].' - Device Traffic');
2011-09-17 19:14:44 +00:00
2015-07-13 20:10:26 +02:00
echo '<tr>
<td colspan="4">';
echo overlib_link($link, $graph, $overlib_content, null);
echo ' </td>
</tr>';
2010-03-14 01:38:43 +00:00
2019-05-23 09:58:43 -05:00
$ports = ObjectCache::portCounts(['total', 'up', 'down', 'disabled'], $device['device_id']);
2015-07-13 20:10:26 +02:00
echo '
2014-02-26 22:33:45 +00:00
<tr>
<td><i class="fa fa-link fa-lg" style="color:black" aria-hidden="true"></i> '.$ports['total'].'</td>
<td><i class="fa fa-link fa-lg interface-upup" aria-hidden="true"></i> '.$ports['up'].'</td>
<td><i class="fa fa-link fa-lg interface-updown" aria-hidden="true"></i> '.$ports['down'].'</td>
<td><i class="fa fa-link fa-lg interface-admindown" aria-hidden="true"></i> '.$ports['disabled'].'</td>
2015-07-13 20:10:26 +02:00
</tr>';
2009-11-11 18:20:32 +00:00
2015-07-13 20:10:26 +02:00
echo '<tr>
<td colspan="4">';
2009-11-11 18:20:32 +00:00
2015-07-13 20:10:26 +02:00
$ifsep = '';
2011-03-16 23:10:10 +00:00
foreach (dbFetchRows("SELECT * FROM `ports` WHERE device_id = ? AND `deleted` != '1' AND `disabled` = 0", array($device['device_id'])) as $data) {
$data = cleanPort($data);
2015-07-13 20:10:26 +02:00
$data = array_merge($data, $device);
echo "$ifsep".generate_port_link($data, makeshortif(strtolower($data['label'])));
$ifsep = ', ';
}
2015-07-13 20:10:26 +02:00
unset($ifsep);
echo ' </td>';
echo '</tr>';
echo '</table>';
echo '</div>';
echo '</div>';
echo '</div>';
}//end if