mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
* massive inlines * fix style and wtf * remove rrdtool.inc.php include * fix CommonFunctions namespace issues * looking for missing class space, fix undefined class issues * style fixes
63 lines
2.1 KiB
PHP
63 lines
2.1 KiB
PHP
<?php
|
|
/*
|
|
* LibreNMS module to Display data from F5 BigIP LTM Devices
|
|
*
|
|
* Copyright (c) 2016 Aaron Daniels <aaron@daniels.id.au>
|
|
*
|
|
* 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="poolid" data-type="numeric" data-visible="false">poolid</th>
|
|
<th data-column-id="name">Name</th>
|
|
<th data-column-id="minup" data-type="numeric">Minimum Members</th>
|
|
<th data-column-id="currentup" data-type="numeric">Current Members</th>
|
|
<th data-column-id="status" data-visible="false">Status</th>
|
|
<th data-column-id="message">Status</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
foreach ($components as $pool_id => $array) {
|
|
if ($array['type'] != 'f5-ltm-pool') {
|
|
continue;
|
|
}
|
|
if ($array['status'] != 0) {
|
|
$message = $array['error'];
|
|
$status = 2;
|
|
} else {
|
|
$message = 'Ok';
|
|
$status = '';
|
|
} ?>
|
|
<tr <?php echo $error; ?>>
|
|
<td><?php echo $pool_id; ?></td>
|
|
<td><?php echo $array['label']; ?></td>
|
|
<td><?php echo $array['minup']; ?></td>
|
|
<td><?php echo $array['currentup']; ?></td>
|
|
<td><?php echo $status; ?></td>
|
|
<td><?php echo $message; ?></td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<script type="text/javascript">
|
|
$("#grid").bootgrid({
|
|
caseSensitive: false,
|
|
statusMappings: {
|
|
2: "danger"
|
|
},
|
|
}).on("click.rs.jquery.bootgrid", function (e, columns, row) {
|
|
var link = '<?php echo \LibreNMS\Util\Url::generate($vars, ['type' => 'ltm_pool', 'subtype' => 'ltm_pool_details']); ?>poolid='+row['poolid'];
|
|
window.location.href = link;
|
|
});
|
|
</script>
|