mirror of
https://github.com/ntop/ntopng.git
synced 2026-08-01 19:24:50 +00:00
24 lines
776 B
HTML
24 lines
776 B
HTML
<div class="row">
|
|
<div class='col'>
|
|
<h4>Top Client Ports</h4>
|
|
<div class="pie-chart m-auto" id="topClientPorts"></div>
|
|
<span class="help-block">Click on the port for more information.</span>
|
|
</div>
|
|
<div class='col'>
|
|
<h4>Top Server Ports</h4>
|
|
<div class="pie-chart m-auto" id="topServerPorts"></div>
|
|
<span class="help-block">Click on the port for more information.</span>
|
|
</div>
|
|
</div>
|
|
<div class='my-3'></div>
|
|
<script type='text/javascript'>
|
|
|
|
window.onload = () => {
|
|
let refresh = 3000 /* ms */;
|
|
do_pie("#topClientPorts", '@HTTP_PREFIX@/lua/iface_ports_list.lua', { clisrv: "client" }, "", refresh);
|
|
do_pie("#topServerPorts", '@HTTP_PREFIX@/lua/iface_ports_list.lua', { clisrv: "server" }, "", refresh);
|
|
}
|
|
|
|
</script>
|
|
|
|
|