mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
Removed old legacy code
Added various fixes to networks view including the ability to visualize per-network graphs Local hosts dumps (before purging) are now handled properly again.
This commit is contained in:
parent
7b708274e5
commit
df38dee87d
19 changed files with 331 additions and 179 deletions
|
|
@ -178,7 +178,14 @@ function print_single_group(value)
|
|||
end
|
||||
|
||||
if (group_col == "local_network_id" or network_n ~= nil) then
|
||||
print(value["name"]..'</A>", ')
|
||||
|
||||
print(value["name"]..'</A> ')
|
||||
|
||||
if(value["id"] ~= "-1") then
|
||||
print('<A HREF='..ntop.getHttpPrefix()..'/lua/network_details.lua?network='..value["id"]..'><i class=\'fa fa-bar-chart\'></i></A>')
|
||||
end
|
||||
|
||||
print('", ')
|
||||
elseif((group_col == "mac") or (group_col == "antenna_mac")) then
|
||||
print(get_symbolic_mac(value["id"])..'</A>", ')
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue