Removed flows with 0 traffic and fixed menu entry

This commit is contained in:
Matteo Biscosi 2025-10-15 13:03:31 +02:00
parent d267cee3eb
commit d09926b6d0
6 changed files with 26 additions and 11 deletions

View file

@ -121,9 +121,9 @@ local columns = {
},
filters = {"in_iface_index", "out_iface_index"},
},
bytes_sent = {column_id = "SUM(SRC2DST_BYTES)", invert_with = "bytes_rcvd"},
bytes_rcvd = {column_id = "SUM(DST2SRC_BYTES)", invert_with = "bytes_sent"},
total_bytes = {column_id = "SUM(TOTAL_BYTES)"},
bytes_sent = {column_id = "SUM(SRC2DST_BYTES)", column_id_no_fun = "SRC2DST_BYTES", invert_with = "bytes_rcvd"},
bytes_rcvd = {column_id = "SUM(DST2SRC_BYTES)", column_id_no_fun = "DST2SRC_BYTES", invert_with = "bytes_sent"},
total_bytes = {column_id = "SUM(TOTAL_BYTES)", column_id_no_fun = "TOTAL_BYTES",},
as = {
formatter = {
funct = format_utils.formatASN,