2 Copyright 2017 Jo-Philipp Wich <jo@mein.io>
3 Licensed to the public under the Apache License 2.0.
11 background: rgba(0, 0, 0, .7);
15 -webkit-transition: all .1s ease;
16 transition: all .1s ease;
18 -webkit-transform: translate(-50%, 0);
19 transform: translate(-50%, 0);
23 #chartjs-tooltip.above {
24 -webkit-transform: translate(-50%, -100%);
25 transform: translate(-50%, -100%);
28 #chartjs-tooltip.above:before {
30 border-color: #111 transparent;
31 border-color: rgba(0, 0, 0, .8) transparent;
32 border-width: 8px 8px 0 8px;
40 -webkit-transform: translate(-50%, 0);
41 transform: translate(-50%, 0);
45 border: 1px solid #999;
46 border-collapse: collapse;
47 margin: 0 0 2px !important;
50 th, td, table table td {
51 border: 1px solid #999;
53 padding: 1px 3px !important;
58 border-bottom-color: #ccc;
62 border-bottom-color: #999;
65 tbody tr:last-child td {
66 border-bottom-color: #999;
72 display: inline-block;
85 display: inline-block;
86 margin: 80px 20px 20px;
112 transition: opacity 0.5s;
115 #detail-bubble > div {
116 border: 1px solid #ccc;
122 #detail-bubble .head {
128 #detail-bubble .head .dismiss {
134 text-decoration: none;
141 #detail-bubble .pie {
146 #detail-bubble .kpi {
147 margin: 40px 5px 5px;
152 #detail-bubble .kpi ul {
157 border: 1px solid #ccc;
158 border-width: 1px 0 0 1px;
165 transform: rotate(45deg);
170 border-bottom: 2px solid red;
173 tr.active > td.active {
174 border: 2px solid red;
179 border: 2px solid red;
182 transition: opacity 0.5s;
198 <script type="text/javascript" src="<%=resource%>/cbi.js"></script>
199 <script type="text/javascript" src="<%=resource%>/nlbw.chart.min.js"></script>
200 <script type="text/javascript">//<![CDATA[
202 var chartRegistry = {},
204 trafficData = { columns: [], data: [] },
206 hostInfo = <%=luci.util.serialize_json(luci.sys.net.host_hints())%>,
214 if (!isNaN(elem.offsetLeft) && !isNaN(elem.offsetTop)) {
215 val[0] += elem.offsetLeft;
216 val[1] += elem.offsetTop;
219 while ((elem = elem.offsetParent) != null);
223 Chart.defaults.global.customTooltips = function(tooltip) {
224 var tooltipEl = document.getElementById('chartjs-tooltip');
227 tooltipEl = document.createElement('div');
228 tooltipEl.setAttribute('id', 'chartjs-tooltip');
229 document.body.appendChild(tooltipEl);
234 tooltipEl.row.style.backgroundColor = '';
236 tooltipEl.style.opacity = 0;
240 var pos = off(tooltip.chart.canvas);
242 tooltipEl.className = tooltip.yAlign;
243 tooltipEl.innerHTML = tooltip.text[0];
245 tooltipEl.style.opacity = 1;
246 tooltipEl.style.left = pos[0] + tooltip.x + 'px';
247 tooltipEl.style.top = pos[1] + tooltip.y - tooltip.caretHeight - tooltip.caretPadding + 'px';
249 var row = tooltip.text[1],
250 hue = tooltip.text[2];
252 if (row && !isNaN(hue)) {
253 row.style.backgroundColor = 'hsl(%u, 100%%, 80%%)'.format(hue);
258 Chart.defaults.global.tooltipFontSize = 10;
259 Chart.defaults.global.tooltipTemplate = function(tip) {
260 tip.label[0] = tip.label[0].format(tip.value);
264 function kpi(id, val1, val2, val3)
266 var e = document.getElementById(id);
268 if (val1 && val2 && val3)
269 e.innerHTML = '<%:%s, %s and %s%>'.format(val1, val2, val3);
270 else if (val1 && val2)
271 e.innerHTML = '<%:%s and %s%>'.format(val1, val2);
275 e.parentNode.style.display = val1 ? 'list-item' : '';
278 function pie(id, data)
280 data.sort(function(a, b) { return b.value - a.value });
282 if (data.length === 0 || (data.length === 1 && data[0].value === 0))
286 label: [ '<%:no traffic%>' ]
289 for (var i = 0; i < data.length; i++) {
290 if (!data[i].color) {
291 var hue = 120 / (data.length-1) * i;
292 data[i].color = 'hsl(%u, 80%%, 50%%)'.format(hue);
293 data[i].label.push(hue);
297 var ctx = document.getElementById(id).getContext('2d');
299 if (chartRegistry.hasOwnProperty(id))
300 chartRegistry[id].destroy();
302 chartRegistry[id] = new Chart(ctx).Doughnut(data, {
303 segmentStrokeWidth: 1,
304 percentageInnerCutout: 30
307 return chartRegistry[id];
310 function query(filter, group, order)
312 var keys = [], columns = {}, records = {}, result = [];
314 if (typeof(group) !== 'function' && typeof(group) !== 'object')
317 for (var i = 0; i < trafficData.columns.length; i++)
318 columns[trafficData.columns[i]] = i;
320 for (var i = 0; i < trafficData.data.length; i++) {
321 var record = trafficData.data[i];
323 if (typeof(filter) === 'function' && filter(columns, record) !== true)
328 if (typeof(group) === 'function') {
329 key = group(columns, record);
334 for (var j = 0; j < group.length; j++)
335 if (columns.hasOwnProperty(group[j]))
336 key.push(record[columns[group[j]]]);
341 if (!records.hasOwnProperty(key)) {
344 for (var col in columns)
345 rec[col] = record[columns[col]];
351 records[key].conns += record[columns.conns];
352 records[key].rx_bytes += record[columns.rx_bytes];
353 records[key].rx_pkts += record[columns.rx_pkts];
354 records[key].tx_bytes += record[columns.tx_bytes];
355 records[key].tx_pkts += record[columns.tx_pkts];
359 if (typeof(order) === 'function')
366 var m, l = 0, r = ouiData.length / 3 - 1;
367 var mac1 = parseInt(mac.replace(/[^a-fA-F0-9]/g, ''), 16);
370 m = l + Math.floor((r - l) / 2);
372 var mask = (0xffffffffffff -
373 (Math.pow(2, 48 - ouiData[m * 3 + 1]) - 1));
375 var mac1_hi = ((mac1 / 0x10000) & (mask / 0x10000)) >>> 0;
376 var mac1_lo = ((mac1 & 0xffff) & (mask & 0xffff)) >>> 0;
378 var mac2 = parseInt(ouiData[m * 3], 16);
379 var mac2_hi = (mac2 / 0x10000) >>> 0;
380 var mac2_lo = (mac2 & 0xffff) >>> 0;
382 if (mac1_hi === mac2_hi && mac1_lo === mac2_lo)
383 return ouiData[m * 3 + 2];
385 if (mac2_hi > mac1_hi ||
386 (mac2_hi === mac1_hi && mac2_lo > mac1_lo))
396 function fetchData(period)
398 XHR.get('<%=url("admin/nlbw/data")%>', { period: period, group_by: 'family,mac,ip,layer7', order_by: '-rx_bytes,-tx_bytes' }, function(xhr, res) {
399 if (res !== null && typeof(res) === 'object' && typeof(res.columns) === 'object' && typeof(res.data) === 'object')
402 var addrs = query(null, ['ip'], null);
405 for (var i = 0; i < addrs.length; i++)
406 if (ipAddrs.indexOf(addrs[i].ip) < 0)
407 ipAddrs.push(addrs[i].ip);
413 XHR.get('<%=url("admin/nlbw/ptr")%>/' + ipAddrs.join('/'), null, function(xhr, res) {
414 if (res !== null && typeof(res) === 'object')
420 function switchTab(tab)
424 return cbi_t_switch('nlbw', tab);
427 function renderPeriods()
429 var sel = document.getElementById('nlbw.period');
431 for (var e, i = trafficPeriods.length - 1; e = trafficPeriods[i]; i--) {
432 var d1 = new Date(e);
436 d2 = new Date(trafficPeriods[i - 1]);
437 d2.setDate(d2.getDate() - 1);
438 pd = '%04d-%02d-%02d'.format(d1.getFullYear(), d1.getMonth() + 1, d1.getDate());
445 var opt = document.createElement('option');
446 opt.setAttribute('data-duration', (d2.getTime() - d1.getTime()) / 1000);
448 opt.text = '%04d-%02d-%02d - %04d-%02d-%02d'.format(
449 d1.getFullYear(), d1.getMonth() + 1, d1.getDate(),
450 d2.getFullYear(), d2.getMonth() + 1, d2.getDate());
452 sel.appendChild(opt);
455 sel.selectedIndex = sel.childNodes.length - 1;
456 sel.style.display = '';
458 sel.onchange = function() {
460 fetchData(sel.options[sel.selectedIndex].value);
464 function renderHostDetail()
466 var key = this.getAttribute('href').substr(1),
467 col = this.getAttribute('data-col'),
468 label = this.getAttribute('data-label'),
469 bubble = document.getElementById('detail-bubble'),
470 arrow = document.getElementById('bubble-arrow'),
471 table = document.getElementById('bubble-table');
475 var detailData = query(
477 return ((r[c.mac] === key || r[c.ip] === key) &&
478 (r[c.rx_bytes] > 0 || r[c.tx_bytes] > 0));
482 return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
486 var rxData = [], txData = [];
488 table.innerHTML = '<tr>' +
489 '<th>%s</th>'.format(label || col) +
490 '<th><%:Conn.%></th>' +
491 '<th colspan="2"><%:Down. (Bytes / Pkts.)%></th>' +
492 '<th colspan="2"><%:Up. (Bytes / Pkts.)%></th>' +
495 for (var i = 0; i < detailData.length; i++) {
496 var rec = detailData[i],
497 row = table.insertRow(-1);
499 row.insertCell(-1).innerHTML = rec[col] || '<%:other%>';
500 row.insertCell(-1).innerHTML = "%1000.2m".format(rec.conns);
501 row.insertCell(-1).innerHTML = "%1024.2mB".format(rec.rx_bytes);
502 row.insertCell(-1).innerHTML = "%1000.2mP".format(rec.rx_pkts);
503 row.insertCell(-1).innerHTML = "%1024.2mB".format(rec.tx_bytes);
504 row.insertCell(-1).innerHTML = "%1000.2mP".format(rec.tx_pkts);
507 label: ['%s: %%1024.2mB'.format(rec[col] || '<%:other%>'), row],
512 label: ['%s: %%1024.2mB'.format(rec[col] || '<%:other%>'), row],
517 pie('bubble-pie1', rxData);
518 pie('bubble-pie2', txData);
520 var mac = key.toUpperCase();
521 var name = hostInfo.hasOwnProperty(mac) ? hostInfo[mac].name : null;
524 for (var i = 0; i < detailData.length; i++)
525 if ((name = hostNames[detailData[i].ip]) !== undefined)
528 if (mac !== '00:00:00:00:00:00') {
529 kpi('bubble-hostname', name);
530 kpi('bubble-vendor', oui(mac));
533 kpi('bubble-hostname');
534 kpi('bubble-vendor');
537 var tr = this.parentNode.parentNode,
541 bubble.style.width = tr.offsetWidth + 'px';
542 bubble.style.left = xy[0] + 'px';
543 bubble.style.top = (xy[1] + tr.offsetHeight) + 'px';
544 arrow.style.left = Math.floor(xy2[0] + this.offsetWidth / 2 - xy[0]) + 'px';
546 bubble.className = 'in';
551 function formatHostname(dns)
553 if (dns === undefined || dns === null || dns === '')
556 dns = dns.split('.')[0];
559 return '<span title="%q">%h…</span>'.format(dns, dns.substr(0, 12));
561 return '%h'.format(dns);
564 function renderHostData()
566 var trafData = [], connData = [];
567 var rx_total = 0, tx_total = 0, conn_total = 0;
568 var table = document.getElementById('host-data');
570 var hostData = query(
572 return (r[c.rx_bytes] > 0 || r[c.tx_bytes] > 0);
576 // return (r[c.mac] !== '00:00:00:00:00:00') ? r[c.mac] : r[c.ip];
579 return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
583 while (table.rows.length > 1)
586 for (var i = 0; i < hostData.length; i++) {
587 var row = table.insertRow(-1),
588 cell = row.insertCell(-1),
590 mac = rec.mac.toUpperCase(),
591 key = (mac !== '00:00:00:00:00:00') ? mac : rec.ip,
592 dns = hostInfo[mac] ? hostInfo[mac].name : null;
594 var link1 = document.createElement('a');
595 link1.onclick = renderHostDetail;
596 link1.href = '#' + rec.mac;
597 link1.setAttribute('data-col', 'ip');
598 link1.setAttribute('data-label', '<%:Source IP%>');
599 link1.innerHTML = (mac !== '00:00:00:00:00:00') ? mac : '<%:other%>';
601 var link2 = document.createElement('a');
602 link2.onclick = renderHostDetail;
603 link2.href = '#' + rec.mac;
604 link2.setAttribute('data-col', 'layer7');
605 link2.setAttribute('data-label', '<%:Protocol%>');
606 link2.innerHTML = "%1000.2m".format(rec.conns);
608 cell.innerHTML = formatHostname(dns);
609 cell.className = 'hostname';
611 row.insertCell(-1).appendChild(link1);
612 row.insertCell(-1).appendChild(link2);
613 row.insertCell(-1).innerHTML = "%1024.2mB".format(rec.rx_bytes);
614 row.insertCell(-1).innerHTML = "%1000.2mP".format(rec.rx_pkts);
615 row.insertCell(-1).innerHTML = "%1024.2mB".format(rec.tx_bytes);
616 row.insertCell(-1).innerHTML = "%1000.2mP".format(rec.tx_pkts);
619 value: rec.rx_bytes + rec.tx_bytes,
620 label: ["%s: %%.2mB".format(key), row]
625 label: ["%s: %%.2m".format(key), row]
628 rx_total += rec.rx_bytes;
629 tx_total += rec.tx_bytes;
630 conn_total += rec.conns;
633 if (table.rows.length === 1) {
634 var cell = table.insertRow(-1).insertCell(-1);
636 cell.setAttribute('colspan', 6);
637 cell.innerHTML = '<em><%:No data recorded yet.%> <a href="<%=url("admin/nlbw/commit")%>"><%:Force reload…%></a></em>';
640 pie('traf-pie', trafData);
641 pie('conn-pie', connData);
643 kpi('rx-total', '%1024.2mB'.format(rx_total));
644 kpi('tx-total', '%1024.2mB'.format(tx_total));
645 kpi('conn-total', '%1000m'.format(conn_total));
646 kpi('host-total', '%u'.format(hostData.length));
649 function renderLayer7Data()
651 var rxData = [], txData = [];
652 var topConn = [[0],[0],[0]], topRx = [[0],[0],[0]], topTx = [[0],[0],[0]];
653 var table = document.getElementById('layer7-data');
655 var layer7Data = query(
658 return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
662 while (table.rows.length > 1)
665 for (var i = 0, c = 0; i < layer7Data.length; i++) {
666 var rec = layer7Data[i],
667 row = table.insertRow(-1);
671 label: ["%s: %%.2mB".format(rec.layer7 || '<%:other%>'), row]
676 label: ["%s: %%.2mB".format(rec.layer7 || '<%:other%>'), row]
679 row.insertCell(-1).innerHTML = rec.layer7 || '<%:other%>';
680 row.insertCell(-1).innerHTML = "%1000m".format(rec.conns);
681 row.insertCell(-1).innerHTML = "%1024.2mB".format(rec.rx_bytes);
682 row.insertCell(-1).innerHTML = "%1000.2mP".format(rec.rx_pkts);
683 row.insertCell(-1).innerHTML = "%1024.2mB".format(rec.tx_bytes);
684 row.insertCell(-1).innerHTML = "%1000.2mP".format(rec.tx_pkts);
687 topRx.push([rec.rx_bytes, rec.layer7]);
688 topTx.push([rec.tx_bytes, rec.layer7]);
689 topConn.push([rec.conns, rec.layer7]);
693 if (table.rows.length === 1) {
694 var cell = table.insertRow(-1).insertCell(-1);
696 cell.setAttribute('colspan', 6);
697 cell.innerHTML = '<em><%:No data recorded yet.%> <a href="<%=url("admin/nlbw/commit")%>"><%:Force reload…%></a></em>';
700 pie('layer7-rx-pie', rxData);
701 pie('layer7-tx-pie', txData);
703 topRx.sort(function(a, b) { return b[0] - a[0] });
704 topTx.sort(function(a, b) { return b[0] - a[0] });
705 topConn.sort(function(a, b) { return b[0] - a[0] });
707 kpi('layer7-total', layer7Data.length);
708 kpi('layer7-most-rx', topRx[0][1], topRx[1][1], topRx[2][1]);
709 kpi('layer7-most-tx', topTx[0][1], topTx[1][1], topTx[2][1]);
710 kpi('layer7-most-conn', topConn[0][1], topConn[1][1], topConn[2][1]);
713 function renderIPv6Data()
715 var table = document.getElementById('ipv6-data'),
728 null, ['family', 'mac'],
730 return ((r2.rx_bytes + r2.tx_bytes) - (r1.rx_bytes + r1.tx_bytes));
734 for (var i = 0, c = 0; i < ipv6Data.length; i++) {
735 var rec = ipv6Data[i],
736 mac = rec.mac.toUpperCase(),
738 fam = families[mac] || 0,
739 recs = records[mac] || {};
741 if (rec.family == 4) {
742 rx4_total += rec.rx_bytes;
743 tx4_total += rec.tx_bytes;
747 rx6_total += rec.rx_bytes;
748 tx6_total += rec.tx_bytes;
752 recs[rec.family] = rec;
758 for (var mac in families) {
759 switch (families[mac])
775 while (table.rows.length > 1)
778 for (var mac in records) {
779 if (mac === '00:00:00:00:00:00')
782 var row = table.insertRow(-1),
783 cell1 = row.insertCell(-1),
784 cell2 = row.insertCell(-1),
785 dns = hostInfo[mac] ? hostInfo[mac].name : null,
786 rec4 = records[mac][4],
787 rec6 = records[mac][6];
789 cell1.setAttribute('rowspan', 2);
790 cell1.innerHTML = formatHostname(dns);
791 cell1.className = 'hostname';
793 cell2.setAttribute('rowspan', 2);
794 cell2.innerHTML = mac;
796 row.insertCell(-1).innerHTML = 'IPv4';
797 row.insertCell(-1).innerHTML = rec4 ? "%1024.2mB".format(rec4.rx_bytes) : '-';
798 row.insertCell(-1).innerHTML = rec4 ? "%1000.2mP".format(rec4.rx_pkts) : '-';
799 row.insertCell(-1).innerHTML = rec4 ? "%1024.2mB".format(rec4.tx_bytes) : '-';
800 row.insertCell(-1).innerHTML = rec4 ? "%1000.2mP".format(rec4.tx_pkts) : '-';
802 row = table.insertRow(-1);
804 row.insertCell(-1).innerHTML = 'IPv6';
805 row.insertCell(-1).innerHTML = rec6 ? "%1024.2mB".format(rec6.rx_bytes) : '-';
806 row.insertCell(-1).innerHTML = rec6 ? "%1000.2mP".format(rec6.rx_pkts) : '-';
807 row.insertCell(-1).innerHTML = rec6 ? "%1024.2mB".format(rec6.tx_bytes) : '-';
808 row.insertCell(-1).innerHTML = rec6 ? "%1000.2mP".format(rec6.tx_pkts) : '-';
811 if (table.rows.length === 1) {
812 var cell = table.insertRow(-1).insertCell(-1);
814 cell.setAttribute('colspan', 7);
815 cell.innerHTML = '<em><%:No data recorded yet.%> <a href="<%=url("admin/nlbw/commit")%>"><%:Force reload…%></a></em>';
818 var shareData = [], hostsData = [];
820 if (rx4_total > 0 || tx4_total > 0)
822 value: rx4_total + tx4_total,
823 label: ["IPv4: %.2mB"],
824 color: 'hsl(140, 100%, 50%)'
827 if (rx6_total > 0 || tx6_total > 0)
829 value: rx6_total + tx6_total,
830 label: ["IPv6: %.2mB"],
831 color: 'hsl(180, 100%, 50%)'
837 label: ["<%:%d IPv4-only hosts%>"],
838 color: 'hsl(140, 100%, 50%)'
844 label: ["<%:%d IPv6-only hosts%>"],
845 color: 'hsl(180, 100%, 50%)'
851 label: ["<%:%d dual-stack hosts%>"],
852 color: 'hsl(50, 100%, 50%)'
855 pie('ipv6-share-pie', shareData);
856 pie('ipv6-hosts-pie', hostsData);
858 kpi('ipv6-hosts', '%.2f%%'.format(100 / (ds_total + v4_total + v6_total) * (ds_total + v6_total)));
859 kpi('ipv6-share', '%.2f%%'.format(100 / (rx4_total + rx6_total + tx4_total + tx6_total) * (rx6_total + tx6_total)));
860 kpi('ipv6-rx', '%1024.2mB'.format(rx6_total));
861 kpi('ipv6-tx', '%1024.2mB'.format(tx6_total));
864 function bubbleDismiss()
866 var bubble = document.getElementById('detail-bubble');
868 bubble.className = '';
869 document.body.appendChild(bubble);
877 <h2 name="content"><%:Netlink Bandwidth Monitor%></h2>
879 <div id="detail-bubble">
880 <span id="bubble-arrow"></span>
883 <a class="dismiss" href="#" onclick="this.blur(); return bubbleDismiss()">×</a>
885 <label>Download</label>
886 <canvas id="bubble-pie1" width="100" height="100"></canvas>
889 <label>Upload</label>
890 <canvas id="bubble-pie2" width="100" height="100"></canvas>
894 <li><%_Hostname: <big id="bubble-hostname">example.org</big>%></li>
895 <li><%_Vendor: <big id="bubble-vendor">Example Corp.</big>%></li>
899 <table id="bubble-table"></table>
906 <%:Select accounting period:%>
907 <select id="nlbw.period" style="display:none"></select>
912 <ul class="cbi-tabmenu">
913 <li id="tab.nlbw.traffic" class="cbi-tab"><a href="#" onclick="return switchTab('traffic')"><%:Traffic Distribution%></a></li>
914 <li id="tab.nlbw.layer7" class="cbi-tab-disabled"><a href="#" onclick="return switchTab('layer7')"><%:Application Protocols%></a></li>
915 <li id="tab.nlbw.ipv6" class="cbi-tab-disabled"><a href="#" onclick="return switchTab('ipv6')"><%:IPv6%></a></li>
916 <li id="tab.nlbw.export" class="cbi-tab-disabled"><a href="#" onclick="return switchTab('export')"><%:Export%></a></li>
919 <div class="cbi-section" id="container.nlbw.traffic">
922 <label><%:Traffic / Host%></label>
923 <canvas id="traf-pie" width="200" height="200"></canvas>
927 <label><%:Connections / Host%></label>
928 <canvas id="conn-pie" width="200" height="200"></canvas>
933 <li><%_<big id="host-total">0</big> hosts%></li>
934 <li><%_<big id="rx-total">0</big> download%></li>
935 <li><%_<big id="tx-total">0</big> upload%></li>
936 <li><%_<big id="conn-total">0</big> connections%></li>
940 <table id="host-data">
942 <th width="10%" class="hostname"><%:Host%></th>
943 <th width="5%"><%:MAC%></th>
944 <th width="5%"><%:Connections%></th>
945 <th width="30%" colspan="2"><%:Download (Bytes / Packets)%></th>
946 <th width="30%" colspan="2"><%:Upload (Bytes / Packets)%></th>
951 <div class="cbi-section" id="container.nlbw.layer7" style="display:none">
954 <label><%:Download / Application%></label>
955 <canvas id="layer7-rx-pie" width="200" height="200"></canvas>
959 <label><%:Upload / Application%></label>
960 <canvas id="layer7-tx-pie" width="200" height="200"></canvas>
965 <li><%_<big id="layer7-total">0</big> different application protocols%></li>
966 <li><%_<big id="layer7-most-rx">0</big> cause the most download%></li>
967 <li><%_<big id="layer7-most-tx">0</big> cause the most upload%></li>
968 <li><%_<big id="layer7-most-conn">0</big> cause the most connections%></li>
972 <table id="layer7-data">
974 <th width="20%"><%:Application%></th>
975 <th width="10%"><%:Connections%></th>
976 <th width="30%" colspan="2"><%:Download (Bytes / Packets)%></th>
977 <th width="30%" colspan="2"><%:Upload (Bytes / Packets)%></th>
982 <div class="cbi-section" id="container.nlbw.ipv6" style="display:none">
985 <label><%:IPv4 vs. IPv6%></label>
986 <canvas id="ipv6-share-pie" width="200" height="200"></canvas>
990 <label><%:Dualstack enabled hosts%></label>
991 <canvas id="ipv6-hosts-pie" width="200" height="200"></canvas>
996 <li><%_<big id="ipv6-hosts">0%</big> IPv6 support rate among hosts%></li>
997 <li><%_<big id="ipv6-share">0%</big> of the total traffic is IPv6%></li>
998 <li><%_<big id="ipv6-rx">0B</big> total IPv6 download%></li>
999 <li><%_<big id="ipv6-tx">0B</big> total IPv6 upload%></li>
1003 <table id="ipv6-data">
1005 <th width="10%" class="hostname"><%:Host%></th>
1006 <th width="5%"><%:MAC%></th>
1007 <th width="5%"><%:Family%></th>
1008 <th width="40%" colspan="2"><%:Download (Bytes / Packets)%></th>
1009 <th width="40%" colspan="2"><%:Upload (Bytes / Packets)%></th>
1014 <div class="cbi-section" id="container.nlbw.export" style="display:none">
1016 <li><a href="<%=url('admin/nlbw/data')%>?type=csv&group_by=mac&order_by=-rx,-tx"><%:CSV, grouped by MAC%></a></li>
1017 <li><a href="<%=url('admin/nlbw/data')%>?type=csv&group_by=ip&order_by=-rx,-tx"><%:CSV, grouped by IP%></a></li>
1018 <li><a href="<%=url('admin/nlbw/data')%>?type=csv&group_by=layer7&order_by=-rx,-tx"><%:CSV, grouped by protocol%></a></li>
1019 <li><a href="<%=url('admin/nlbw/data')%>?type=json"><%:JSON dump%></a></li>
1023 <script type="text/javascript">//<![CDATA[
1024 cbi_t_add('nlbw', 'traffic');
1025 cbi_t_add('nlbw', 'layer7');
1026 cbi_t_add('nlbw', 'ipv6');
1027 cbi_t_add('nlbw', 'export');
1029 XHR.get('<%=url("admin/nlbw/list")%>', null, function(xhr, res) {
1031 if (res !== null && typeof(res) === 'object' && res.length > 0) {
1032 trafficPeriods = res;
1036 xhr.open('GET', 'https://raw.githubusercontent.com/jow-/oui-database/master/oui.json', true);
1037 xhr.onreadystatechange = function() {
1038 if (xhr.readyState === 4) {
1039 try { res = JSON.parse(xhr.responseText); }
1040 catch(e) { res = null; }
1042 if (res !== null && typeof(res) === 'object' && (res.length % 3) === 0)