Files
librenms-librenms/includes/html/pages/device/loadbalancer/ltm_bwc_all.inc.php
2020-05-28 23:15:35 +02:00

105 lines
3.3 KiB
PHP

<?php
/*
* LibreNMS module to Display data from F5 BigIP LTM Devices
*
* Copyright (c) 2019 Yacine BENAMSILI <https://github.com/yac01/ yacine.benamsili@homail.com>
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation, either version 3 of the License, or (at your
* option) any later version. Please see LICENSE.txt at the top level of
* the source code distribution for details.
*/
?>
<table id='grid' data-toggle='bootgrid' class='table table-condensed table-responsive table-striped'>
<thead>
<tr>
<th data-column-id="bwcid" data-type="numeric" data-visible="false">bwcid</th>
<th data-column-id="name">Name</th>
</tr>
</thead>
<tbody>
<?php
foreach ($components as $bwc_id => $array) {
if ($array['type'] != 'f5-ltm-bwc') {
continue;
}
?>
<tr>
<td><?php echo $bwc_id; ?></td>
<td><?php echo $array['label']; ?></td>
</tr>
<?php
}
?>
</tbody>
</table>
<div class="panel panel-default" id="BitsDropped">
<div class="panel-heading">
<h3 class="panel-title">Traffic Dropped</h3>
</div>
<div class="panel-body">
<?php
$graph_array = array();
$graph_array['device'] = $device['device_id'];
$graph_array['height'] = '100';
$graph_array['width'] = '215';
$graph_array['legend'] = 'no';
$graph_array['to'] = \LibreNMS\Config::get('time.now');
$graph_array['type'] = 'device_bigip_ltm_allbwc_BitsDropped';
require 'includes/html/print-graphrow.inc.php';
?>
</div>
</div>
<div class="panel panel-default" id="Bitsin">
<div class="panel-heading">
<h3 class="panel-title">Traffic In</h3>
</div>
<div class="panel-body">
<?php
$graph_array = array();
$graph_array['device'] = $device['device_id'];
$graph_array['height'] = '100';
$graph_array['width'] = '215';
$graph_array['legend'] = 'no';
$graph_array['to'] = \LibreNMS\Config::get('time.now');
$graph_array['type'] = 'device_bigip_ltm_allbwc_Bitsin';
require 'includes/html/print-graphrow.inc.php';
?>
</div>
</div>
<div class="panel panel-default" id="pktsin">
<div class="panel-heading">
<h3 class="panel-title">Packets In</h3>
</div>
<div class="panel-body">
<?php
$graph_array = array();
$graph_array['device'] = $device['device_id'];
$graph_array['height'] = '100';
$graph_array['width'] = '215';
$graph_array['legend'] = 'no';
$graph_array['to'] = \LibreNMS\Config::get('time.now');
$graph_array['type'] = 'device_bigip_ltm_allbwc_pktsin';
require 'includes/html/print-graphrow.inc.php';
?>
</div>
</div>
<script type="text/javascript">
$("#grid").bootgrid({
caseSensitive: false,
statusMappings: {
2: "danger"
},
}).on("click.rs.jquery.bootgrid", function (e, columns, row) {
var link = '<?php echo generate_url($vars, array('type' => 'ltm_bwc', 'subtype' => 'ltm_bwc_det')); ?>bwcid='+row['bwcid'];
window.location.href = link;
});
</script>