Fixes aggregated flows not working (#9211)

This commit is contained in:
Matteo Biscosi 2025-05-15 22:54:49 +02:00
parent 520427a558
commit f6cef4ccd3
11 changed files with 106 additions and 40 deletions

View file

@ -683,6 +683,7 @@ local function dt_format_probe(probe_ip)
if isEmptyString(probe_ip) or probe_ip == "0.0.0.0" or probe_ip == "0" then
probe_info["title"] = ""
probe_info["label"] = ""
probe_info["value"] = ""
else
probe_info["label"] = getProbeName(probe_ip)
if (probe_info["label"]
@ -1332,7 +1333,7 @@ historical_flow_utils.extra_db_columns = {
historical_flow_utils.ordering_special_columns = {
["srv_ip"] = {[4] = "IPv4NumToString(IPV4_DST_ADDR)", [6] = "IPv6NumToString(IPV6_DST_ADDR)"},
["cli_ip"] = {[4] = "IPv4NumToString(IPV4_SRC_ADDR)", [6] = "IPv6NumToString(IPV6_SRC_ADDRc)"},
["cli_ip"] = {[4] = "IPv4NumToString(IPV4_SRC_ADDR)", [6] = "IPv6NumToString(IPV6_SRC_ADDR)"},
["l7proto"] = "L7_PROTO_MASTER",
["throughput"] = "THROUGHPUT"
}