mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
Per hosts alerts are not correctly initialized
Aded IPv6 label to top talkers to easily identify hosts with dual stack
This commit is contained in:
parent
43c17964e5
commit
1a154dc52f
5 changed files with 33 additions and 6 deletions
|
|
@ -47,8 +47,7 @@ other_stats_id = "Other"
|
|||
-- #################################################
|
||||
|
||||
function getTop(stats, sort_field_key, max_num_entries, lastdump_dir, lastdump_key, use_threshold)
|
||||
local _filtered_stats, filtered_stats, counter, total,
|
||||
threshold, low_threshold
|
||||
local _filtered_stats, filtered_stats, counter, total, threshold, low_threshold
|
||||
|
||||
if (use_threshold == nil) then use_threshold = true end
|
||||
|
||||
|
|
@ -179,7 +178,13 @@ function getCurrentTopTalkers(ifid, ifname, filter_col, filter_val, concat, mode
|
|||
else
|
||||
if(num > 0) then rsp = rsp .. " }," end
|
||||
rsp = rsp .. '\n\t\t { "address": "'..id.. '", "label": "'
|
||||
..(hosts_stats[id]["name"] or 'n.a.')..'", "url": "'
|
||||
..(hosts_stats[id]["name"] or 'n.a.')
|
||||
|
||||
if((hosts_stats[id]["name"] ~= "") and (isIPv6String(id) == true)) then
|
||||
rsp = rsp .. " (IPv6)"
|
||||
end
|
||||
|
||||
rsp = rsp ..'", "url": "'
|
||||
..ntop.getHttpPrefix()..
|
||||
'/lua/host_details.lua?host='..id..'", "value": '..value..
|
||||
', "local": "'..tostring(hosts_stats[id]["localhost"])..'"'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue