mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
119 lines
4.7 KiB
JavaScript
119 lines
4.7 KiB
JavaScript
import {DataTableUtils} from '../utilities/datatable/sprymedia-datatable-utils';
|
|
import formatterUtils from '../utilities/formatter-utils.js';
|
|
import NtopUtils from '../utilities/ntop-utils';
|
|
|
|
|
|
const bytesToSizeFormatter = formatterUtils.getFormatter(formatterUtils.types.bytes.id);
|
|
const bpsFormatter = formatterUtils.getFormatter(formatterUtils.types.bps.id);
|
|
const handlerIdAddLink = 'page-stats-action-link';
|
|
const handlerIdJumpToDetails = 'page-stats-details';
|
|
|
|
const top_snmp_interface = {
|
|
table_value: 'snmp',
|
|
table_source_def_value_dict: {ifid: true, device: true, if_index: false},
|
|
title: i18n('page_stats.top.top_interfaces'),
|
|
view: 'top_snmp_ifaces',
|
|
default_sorting_columns: 4,
|
|
columnDefs: [
|
|
{type: 'file-size', targets: 1},
|
|
{type: 'file-size', targets: 2},
|
|
{type: 'file-size', targets: 3},
|
|
],
|
|
f_get_label: (ts_group) => {
|
|
const source_def_array = ts_group.source_type.source_def_array;
|
|
let source_label;
|
|
for (let i = 0; i < source_def_array.length; i += 1) {
|
|
if (source_def_array[i].value != 'device') {
|
|
continue;
|
|
}
|
|
source_label = ts_group.source_array[i].label;
|
|
break;
|
|
}
|
|
return `${i18n('page_stats.top.top_interfaces')} - SNMP ${i18n('page_stats.source_def.device')} ${source_label}`;
|
|
},
|
|
default: true,
|
|
|
|
columns: [{
|
|
columnName: i18n('actions'), width: '5%', name: 'actions', className: 'text-center', orderable: false, responsivePriority: 0, handlerId: handlerIdJumpToDetails,
|
|
render_if: function(context) {
|
|
return context.is_history_enabled;
|
|
},
|
|
render: function(data, type, service) {
|
|
const context = this;
|
|
const jump_to_interface_page = {
|
|
handlerId: handlerIdJumpToDetails,
|
|
onClick: function() {
|
|
const interface_id = ntopng_url_manager.serialize_param('snmp_port_idx', `${service.tags.if_index}`);
|
|
const device_ip = ntopng_url_manager.serialize_param('host', `${service.tags.device}`);
|
|
const interface_details_page = `${http_prefix}/lua/pro/enterprise/snmp_interface_details.lua?${interface_id}&${device_ip}`;
|
|
window.open(interface_details_page);
|
|
},
|
|
};
|
|
return DataTableUtils.createActionButtons([
|
|
{class: 'dropdown-item', icon: 'fas fa-laptop', href: '#', title: i18n('page_stats.interface_details'), handler: jump_to_interface_page},
|
|
]);
|
|
},
|
|
}, {
|
|
columnName: i18n('interface_name'), name: 'interface', data: 'interface', handlerId: handlerIdAddLink,
|
|
render: function(data, type, service) {
|
|
const context = this;
|
|
const handler = {
|
|
handlerId: handlerIdAddLink,
|
|
onClick: function() {
|
|
const schema = `snmp_if:traffic`;
|
|
context.add_ts_group_from_source_value_dict('snmp_interface', service.tags, schema);
|
|
},
|
|
};
|
|
const label_text = `${data.name}`;
|
|
return DataTableUtils.createLinkCallback({text: label_text, handler});
|
|
},
|
|
}, {
|
|
columnName: i18n('interface_alias'), name: 'interface', data: 'interface', handlerId: handlerIdAddLink,
|
|
render: function(data) {
|
|
const label_text = `${data.alias}`;
|
|
return label_text;
|
|
},
|
|
}, {
|
|
columnName: i18n('page_stats.top.sent'), name: 'sent', className: 'text-end', data: 'sent', orderable: true,
|
|
render: (data) => {
|
|
return bytesToSizeFormatter(data);
|
|
// return NtopUtils.bytesToSize(data)
|
|
},
|
|
}, {
|
|
columnName: i18n('page_stats.top.received'), name: 'received', className: 'text-end', data: 'rcvd', orderable: true,
|
|
render: (data) => {
|
|
return bytesToSizeFormatter(data);
|
|
// return NtopUtils.bytesToSize(data)
|
|
},
|
|
}, {
|
|
columnName: i18n('traffic'), name: 'traffic', className: 'text-end', data: 'total', orderable: true,
|
|
render: (data) => {
|
|
return bytesToSizeFormatter(data);
|
|
// return NtopUtils.bytesToSize(data)
|
|
},
|
|
}, {
|
|
columnName: i18n('last_downlink_usage'), name: 'traffic_perc', className: 'text-center no-wrap', data: 'downlink_usage_percentage',
|
|
render: (data) => {
|
|
let percentage = data.toFixed(1);
|
|
if (percentage > 100) percentage = 100;
|
|
return NtopUtils.createProgressBar(percentage);
|
|
},
|
|
}, {
|
|
columnName: i18n('last_uplink_usage'), name: 'traffic_perc', className: 'text-center no-wrap', data: 'uplink_usage_percentage',
|
|
render: (data) => {
|
|
let percentage = data.toFixed(1);
|
|
if (percentage > 100) percentage = 100;
|
|
return NtopUtils.createProgressBar(percentage);
|
|
},
|
|
}, {
|
|
columnName: i18n('page_stats.top.throughput'), name: 'throughput', className: 'text-end', data: 'throughput', orderable: true,
|
|
render: (data) => {
|
|
return bpsFormatter(data);
|
|
// return NtopUtils.bytesToSize(data)
|
|
},
|
|
}],
|
|
};
|
|
|
|
const snmp_interface_top_tables = [top_snmp_interface];
|
|
|
|
export default snmp_interface_top_tables;
|