mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Added various fixes to networks view including the ability to visualize per-network graphs Local hosts dumps (before purging) are now handled properly again.
74 lines
1.9 KiB
Lua
74 lines
1.9 KiB
Lua
--
|
|
-- (C) 2013-15 - 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')
|
|
|
|
if (group_col == nil) then
|
|
group_col = "network"
|
|
end
|
|
|
|
ntop.dumpFile(dirs.installdir .. "/httpdocs/inc/header.inc")
|
|
|
|
active_page = "hosts"
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/menu.lua")
|
|
|
|
print [[
|
|
<hr>
|
|
<div id="table-network"></div>
|
|
<script>
|
|
var url_update = "]]
|
|
print (ntop.getHttpPrefix())
|
|
print [[/lua/get_grouped_hosts_data.lua?grouped_by=local_network_id]]
|
|
|
|
print ('";')
|
|
ntop.dumpFile(dirs.installdir .. "/httpdocs/inc/network_stats_id.inc")
|
|
|
|
print [[
|
|
$("#table-network").datatable({
|
|
title: "Network List",
|
|
url: url_update ,
|
|
]]
|
|
|
|
print('title: "Networks",\n')
|
|
print ('rowCallback: function ( row ) { return network_table_setID(row); },')
|
|
|
|
-- Set the preference table
|
|
preference = tablePreferences("rows_number",_GET["perPage"])
|
|
if (preference ~= "") then print ('perPage: '..preference.. ",\n") end
|
|
|
|
-- Automatic default sorted. NB: the column must exist.
|
|
print ('sort: [ ["' .. getDefaultTableSort("network") ..'","' .. getDefaultTableSortOrder("network").. '"] ],')
|
|
|
|
|
|
print [[
|
|
showPagination: true,
|
|
columns: [
|
|
{
|
|
title: "Key",
|
|
field: "key",
|
|
hidden: true,
|
|
css: {
|
|
textAlign: 'center'
|
|
}
|
|
},
|
|
{
|
|
title: "Network Name",
|
|
field: "column_id",
|
|
sortable: true,
|
|
css: {
|
|
textAlign: 'left'
|
|
}
|
|
},
|
|
]]
|
|
|
|
|
|
ntop.dumpFile(dirs.installdir .. "/httpdocs/inc/network_stats_top.inc")
|
|
|
|
ntop.dumpFile(dirs.installdir .. "/httpdocs/inc/network_stats_bottom.inc")
|
|
dofile(dirs.installdir .. "/scripts/lua/inc/footer.lua")
|