mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
A new Paginator class has been implemented. The class is generic in the sense that it accepts lua tables as input in order to cofigure, for exampe, the number of results per page and so on.
129 lines
2.5 KiB
Lua
129 lines
2.5 KiB
Lua
--
|
|
-- (C) 2013-16 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
|
|
sendHTTPHeader('text/html; charset=iso-8859-1')
|
|
|
|
ntop.dumpFile(dirs.installdir .. "/httpdocs/inc/header.inc")
|
|
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/menu.lua")
|
|
|
|
print [[
|
|
|
|
|
|
<ul class="breadcrumb">
|
|
<li><A HREF=]]
|
|
print (ntop.getHttpPrefix())
|
|
print [[/lua/flows_stats.lua>Flows</A> </li>
|
|
]]
|
|
|
|
|
|
print("<li>L4 Port: ".._GET["port"].."</li></ul>")
|
|
|
|
print [[
|
|
<div id="table-hosts"></div>
|
|
<script>
|
|
$("#table-hosts").datatable({
|
|
]]
|
|
print("url: \""..ntop.getHttpPrefix().."/lua/get_flows_data.lua?port=" .. _GET["port"])
|
|
if(_GET["host"] ~= nil) then print("&host=".._GET["host"]) end
|
|
print("\",\n")
|
|
|
|
|
|
print [[
|
|
showPagination: true,
|
|
title: "Active Flows ]]
|
|
if(_GET["host"] ~= nil) then
|
|
print("for ".._GET["host"]..":".._GET["port"])
|
|
else
|
|
symbolic_port = getservbyport(_GET["port"], _GET["proto"])
|
|
print("on Port ".._GET["port"])
|
|
if(symbolic_port ~= _GET["port"]) then
|
|
print(" [".. symbolic_port .."]")
|
|
end
|
|
end
|
|
print [[",
|
|
columns: [
|
|
{
|
|
title: "Info",
|
|
field: "column_key",
|
|
css: {
|
|
textAlign: 'center'
|
|
}
|
|
},
|
|
{
|
|
title: "Application",
|
|
field: "column_ndpi",
|
|
sortable: true,
|
|
css: {
|
|
textAlign: 'center'
|
|
}
|
|
},
|
|
{
|
|
title: "L4 Proto",
|
|
field: "column_proto_l4",
|
|
sortable: true,
|
|
css: {
|
|
textAlign: 'center'
|
|
}
|
|
}, {]]
|
|
|
|
ifstats = aggregateInterfaceStats(interface.getStats())
|
|
|
|
if(ifstats.sprobe) then
|
|
print('title: "Source Id",\n')
|
|
else
|
|
print('title: "VLAN",\n')
|
|
end
|
|
|
|
print [[
|
|
field: "column_vlan",
|
|
sortable: true,
|
|
css: {
|
|
textAlign: 'center'
|
|
}
|
|
|
|
},
|
|
]]
|
|
|
|
print [[
|
|
{
|
|
title: "Client",
|
|
field: "column_client",
|
|
sortable: true,
|
|
},
|
|
{
|
|
title: "Server",
|
|
field: "column_server",
|
|
sortable: true,
|
|
},
|
|
{
|
|
title: "Duration",
|
|
field: "column_duration",
|
|
sortable: true,
|
|
css: {
|
|
textAlign: 'right'
|
|
}
|
|
},
|
|
{
|
|
title: "Bytes",
|
|
field: "column_bytes",
|
|
sortable: true,
|
|
css: {
|
|
textAlign: 'right'
|
|
}
|
|
|
|
}
|
|
]
|
|
});
|
|
</script>
|
|
|
|
]]
|
|
|
|
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/footer.lua")
|