mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
100 lines
4.2 KiB
PHP
100 lines
4.2 KiB
PHP
<?php
|
|
|
|
echo '<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="panel panel-default panel-condensed">
|
|
<div class="panel-heading">';
|
|
echo '<a href="device/device='.$device['device_id'].'/tab=health/metric=mempool/">';
|
|
echo "<img src='images/16/arrow_switch.png'> Catalyst 6k Crossbar</a>";
|
|
echo ' </div>
|
|
<table class="table table-hover table-condensed table-striped">';
|
|
|
|
foreach ($entity_state['group']['c6kxbar'] as $index => $entry) {
|
|
// FIXME i'm not sure if this is the correct way to decide what entphysical index it is. slotnum+1? :>
|
|
$entity = dbFetchRow('SELECT * FROM entPhysical WHERE device_id = ? AND entPhysicalIndex = ?', array($device['device_id'], $index + 1));
|
|
|
|
echo "<tr>
|
|
<td colspan='5'><strong>".$entity['entPhysicalName']."</strong></td>
|
|
<td colspan='2'>";
|
|
|
|
switch ($entry['']['cc6kxbarModuleModeSwitchingMode']) {
|
|
case 'busmode':
|
|
// echo '<a title="Modules in this mode don't use fabric. Backplane is used for both lookup and data forwarding.">Bus</a>';
|
|
break;
|
|
|
|
case 'crossbarmode':
|
|
echo '<a title="Modules in this mode use backplane for forwarding decision and fabric for data forwarding.">Crossbar</a>';
|
|
break;
|
|
|
|
case 'dcefmode':
|
|
echo '<a title="Modules in this mode use fabric for data forwarding and local forwarding is enabled.">DCEF</a>';
|
|
break;
|
|
|
|
default:
|
|
echo $entry['']['cc6kxbarModuleModeSwitchingMode'];
|
|
}
|
|
|
|
echo '</td>
|
|
</tr>';
|
|
|
|
foreach ($entity_state['group']['c6kxbar'][$index] as $subindex => $fabric) {
|
|
if (is_numeric($subindex)) {
|
|
if ($fabric['cc6kxbarModuleChannelFabStatus'] == 'ok') {
|
|
$fabric['mode_class'] = 'green';
|
|
}
|
|
else {
|
|
$fabric['mode_class'] = 'red';
|
|
}
|
|
|
|
$percent_in = $fabric['cc6kxbarStatisticsInUtil'];
|
|
$background_in = get_percentage_colours($percent_in);
|
|
|
|
$percent_out = $fabric['cc6kxbarStatisticsOutUtil'];
|
|
$background_out = get_percentage_colours($percent_out);
|
|
|
|
$graph_array = array();
|
|
$graph_array['height'] = '100';
|
|
$graph_array['width'] = '210';
|
|
$graph_array['to'] = $config['time']['now'];
|
|
$graph_array['device'] = $device['device_id'];
|
|
$graph_array['mod'] = $index;
|
|
$graph_array['chan'] = $subindex;
|
|
$graph_array['type'] = 'c6kxbar_util';
|
|
$graph_array['from'] = $config['time']['day'];
|
|
$graph_array['legend'] = 'no';
|
|
|
|
$link_array = $graph_array;
|
|
$link_array['page'] = 'graphs';
|
|
unset($link_array['height'], $link_array['width'], $link_array['legend']);
|
|
$link = generate_url($link_array);
|
|
|
|
$text_descr = $entity['entPhysicalName'].' - Fabric '.$subindex;
|
|
|
|
$overlib_content = generate_overlib_content($graph_array, $device['hostname'].' - '.$text_descr);
|
|
|
|
$graph_array['width'] = 80;
|
|
$graph_array['height'] = 20;
|
|
$graph_array['bg'] = 'ffffff00';
|
|
// the 00 at the end makes the area transparent.
|
|
$minigraph = generate_lazy_graph_tag($graph_array);
|
|
|
|
echo ('<tr>
|
|
<td></td>
|
|
<td><strong>Fabric '.$subindex."</strong></td>
|
|
<td><span style='font-weight: bold;' class=".$fabric['mode_class'].'>'.$fabric['cc6kxbarModuleChannelFabStatus'].'</span></td>
|
|
<td>'.formatRates(($fabric['cc6kxbarModuleChannelSpeed'] * 1000000)).'</td>
|
|
<td>'.overlib_link($link, $minigraph, $overlib_content).'</td>
|
|
<td>'.print_percentage_bar(125, 20, $percent_in, 'Ingress', 'ffffff', $background['left'], $percent_in.'%', 'ffffff', $background['right']).'</td>
|
|
<td>'.print_percentage_bar(125, 20, $percent_out, 'Egress', 'ffffff', $background['left'], $percent_out.'%', 'ffffff', $background['right']).'</td>
|
|
</tr>');
|
|
}//end if
|
|
}//end foreach
|
|
}//end foreach
|
|
|
|
echo ' </table>';
|
|
echo ' </div>';
|
|
echo ' </div>';
|
|
echo ' </div>';
|
|
echo '</div>';
|