mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
92 lines
4.2 KiB
PHP
92 lines
4.2 KiB
PHP
<?php
|
|
$details_visible = var_export($vars['format'] == 'list_detail', 1);
|
|
$errors_visible = var_export($vars['format'] == 'list_detail' || $vars['errors'], 1);
|
|
$no_refresh = true;
|
|
|
|
if ($vars['errors']) {
|
|
$error_sort = ' data-order="desc"';
|
|
$sort = '';
|
|
} else {
|
|
$error_sort = '';
|
|
$sort = ' data-order="asc"';
|
|
}
|
|
?>
|
|
<div class="panel panel-default panel-condensed">
|
|
<div class="table-responsive">
|
|
<table id="ports" class="table table-condensed table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th data-column-id="device">Device</th>
|
|
<th data-column-id="port"<?php echo $sort ?>>Port</th>
|
|
<th data-column-id="ifLastChange" data-converter="duration">Status Changed</th>
|
|
<th data-column-id="ifConnectorPresent" data-visible="false">Connected</th>
|
|
<th data-column-id="ifSpeed" data-converter="human-bps">Speed</th>
|
|
<th data-column-id="ifMtu" data-visible="false">MTU</th>
|
|
<th data-column-id="ifInOctets_rate" data-searchable="false" data-css-class="green" data-converter="human-bps">Down</th>
|
|
<th data-column-id="ifOutOctets_rate" data-searchable="false" data-css-class="blue" data-converter="human-bps">Up</th>
|
|
<th data-column-id="ifInUcastPkts_rate" data-searchable="false" data-visible="<?php echo $details_visible ?>" data-css-class="green" data-converter="human-pps">Packets In</th>
|
|
<th data-column-id="ifOutUcastPkts_rate" data-searchable="false" data-visible="<?php echo $details_visible ?>" data-css-class="blue" data-converter="human-pps">Packets Out</th>
|
|
<th data-column-id="ifInErrors" data-searchable="false" data-visible="<?php echo $errors_visible ?>" data-css-class="red"<?php echo $error_sort ?>>Errors In</th>
|
|
<th data-column-id="ifOutErrors" data-searchable="false" data-visible="<?php echo $errors_visible ?>" data-css-class="red">Errors Out</th>
|
|
<th data-column-id="ifType">Media</th>
|
|
<th data-column-id="description">Description</th>
|
|
<th data-column-id="actions" data-sortable="false" data-searchable="false">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
|
|
function formatUnits(units,decimals,display,base) {
|
|
if(!units) return '';
|
|
if(display === undefined) display = ['bps', 'Kbps', 'Mbps', 'Gbps', 'Tbps', 'Pbps', 'Ebps', 'Zbps', 'Ybps'];
|
|
if(units == 0) return units + display[0];
|
|
base = base || 1000; // or 1024 for binary
|
|
var dm = decimals || 2;
|
|
var i = Math.floor(Math.log(units) / Math.log(base));
|
|
return parseFloat((units / Math.pow(base, i)).toFixed(dm)) + display[i];
|
|
}
|
|
|
|
var grid = $("#ports").bootgrid({
|
|
ajax: true,
|
|
rowCount: [50, 100, 250, -1],
|
|
converters: {
|
|
'duration': {
|
|
to: function (value) { return moment.duration(value, 'seconds').humanize(); }
|
|
},
|
|
'human-bps': {
|
|
to: function (value) { return formatUnits(value); }
|
|
},
|
|
'human-pps': {
|
|
to: function (value) {
|
|
return formatUnits(value, 2, ['pps', 'Kpps', 'Mpps', 'Gpps', 'Tpps', 'Ppps', 'Epps', 'Zpps', 'Ypps']);
|
|
}
|
|
}
|
|
},
|
|
templates: {
|
|
search: "" // hide the generic search
|
|
},
|
|
post: function ()
|
|
{
|
|
return {
|
|
id: "ports",
|
|
device_id: '<?php echo mres($vars['device_id']); ?>',
|
|
hostname: '<?php echo htmlspecialchars($vars['hostname']); ?>',
|
|
state: '<?php echo mres($vars['state']); ?>',
|
|
ifSpeed: '<?php echo mres($vars['ifSpeed']); ?>',
|
|
ifType: '<?php echo mres($vars['ifType']); ?>',
|
|
port_descr_type: '<?php echo mres($vars['port_descr_type']); ?>',
|
|
ifAlias: '<?php echo $vars['ifAlias']; ?>',
|
|
location: '<?php echo mres($vars['location']); ?>',
|
|
disabled: '<?php echo mres($vars['disabled']); ?>',
|
|
ignore: '<?php echo mres($vars['ignore']); ?>',
|
|
deleted: '<?php echo mres($vars['deleted']); ?>',
|
|
errors: '<?php echo mres($vars['errors']); ?>',
|
|
};
|
|
},
|
|
url: "ajax_table.php"
|
|
});
|
|
|
|
</script>
|