1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
--
-- (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")
|