mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Fix RRD errors for duplicate LBD hosts serialized by MAC
This commit is contained in:
parent
7276e9d6e3
commit
5aff6583b2
1 changed files with 17 additions and 1 deletions
|
|
@ -356,6 +356,7 @@ function ts_dump.run_5min_dump(_ifname, ifstats, config, when, time_threshold, s
|
|||
end
|
||||
|
||||
local dump_tstart = os.time()
|
||||
local lbd_hosts_dumped = {}
|
||||
|
||||
-- Save hosts stats (if enabled from the preferences)
|
||||
if (is_rrd_creation_enabled and (config.host_rrd_creation ~= "0")) or are_alerts_enabled then
|
||||
|
|
@ -366,11 +367,26 @@ function ts_dump.run_5min_dump(_ifname, ifstats, config, when, time_threshold, s
|
|||
end
|
||||
|
||||
if is_rrd_creation_enabled then
|
||||
local is_lbo_host = (hostname ~= host_ts.tskey)
|
||||
local host_key = host_ts.tskey
|
||||
|
||||
if is_lbo_host then
|
||||
if lbd_hosts_dumped[host_key] then
|
||||
-- The host was already dumped by its key, use its IP address
|
||||
-- as the fallback serialization id
|
||||
host_key = hostname
|
||||
else
|
||||
-- Serialize by using the tskey but remember this key to avoid
|
||||
-- multiple hosts to be serialized with same key
|
||||
lbd_hosts_dumped[host_key] = true
|
||||
end
|
||||
end
|
||||
|
||||
for _, host_point in ipairs(host_ts or {}) do
|
||||
local instant = host_point.instant
|
||||
|
||||
if instant >= min_instant then
|
||||
ts_dump.host_update_rrd(instant, host_ts.tskey, host_point, ifstats, verbose, config)
|
||||
ts_dump.host_update_rrd(instant, host_key, host_point, ifstats, verbose, config)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue