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">
|
2017-01-21 13:24:05 +02:00
|
|
|
<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
|
|
|
|
2019-08-05 14:16:05 -05:00
|
|
|
if ($screen_width = Session::get('screen_width')) {
|
|
|
|
|
if ($screen_width > 970) {
|
|
|
|
|
$graph_array['width'] = round(($screen_width - 390 )/2, 0);
|
2015-12-02 12:52:08 +00:00
|
|
|
$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 {
|
2019-08-05 14:16:05 -05:00
|
|
|
$graph_array['width'] = $screen_width - 190;
|
2015-12-02 12:52:08 +00:00
|
|
|
$graph_array['height'] = round($graph_array['width'] /3);
|
2015-12-21 13:26:48 +00:00
|
|
|
$graph_array['lazy_w'] = $graph_array['width'] + 80;
|
2015-12-02 12:52:08 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
2015-12-02 12:52:08 +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>
|
2017-01-21 13:24:05 +02:00
|
|
|
<td><i class="fa fa-link fa-lg" style="color:black" aria-hidden="true"></i> '.$ports['total'].'</td>
|
2017-02-21 10:29:22 -06:00
|
|
|
<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
|
|
|
|
2018-08-17 19:24:11 +02:00
|
|
|
foreach (dbFetchRows("SELECT * FROM `ports` WHERE device_id = ? AND `deleted` != '1' AND `disabled` = 0", array($device['device_id'])) as $data) {
|
2017-04-04 08:08:23 +01:00
|
|
|
$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 = ', ';
|
|
|
|
|
}
|
2011-03-17 00:09:20 +00:00
|
|
|
|
2015-07-13 20:10:26 +02:00
|
|
|
unset($ifsep);
|
|
|
|
|
echo ' </td>';
|
|
|
|
|
echo '</tr>';
|
|
|
|
|
echo '</table>';
|
|
|
|
|
echo '</div>';
|
|
|
|
|
echo '</div>';
|
|
|
|
|
echo '</div>';
|
|
|
|
|
}//end if
|