mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
Fix network_id rendering in custom queries
This commit is contained in:
parent
f267cf03a3
commit
b37bb32c57
2 changed files with 15 additions and 0 deletions
|
|
@ -969,6 +969,7 @@ local flow_columns = {
|
|||
['SERVER_NW_LATENCY_US'] = { tag = "srv_nw_latency", dt_func = dt_format_latency_ms,format_func = format_flow_latency, i18n = i18n("db_search.srv_nw_latency"), order = 14 },
|
||||
['CLIENT_LOCATION'] = { tag = "cli_location", dt_func = dt_format_location },
|
||||
['SERVER_LOCATION'] = { tag = "srv_location", dt_func = dt_format_location },
|
||||
['NETWORK_ID'] = { tag = "network", dt_func = dt_format_network },
|
||||
['SRC_NETWORK_ID'] = { tag = "cli_network", dt_func = dt_format_network },
|
||||
['DST_NETWORK_ID'] = { tag = "srv_network", dt_func = dt_format_network },
|
||||
['INPUT_SNMP'] = { tag = "input_snmp", dt_func = dt_format_snmp_interface },
|
||||
|
|
@ -1031,6 +1032,7 @@ local aggregated_flow_columns = {
|
|||
['DST_ASN'] = { tag = "srv_asn", simple_dt_func = simple_format_dst_asn },
|
||||
['INPUT_SNMP'] = { tag = "input_snmp", dt_func = dt_format_snmp_interface },
|
||||
['OUTPUT_SNMP'] = { tag = "output_snmp", dt_func = dt_format_snmp_interface },
|
||||
['NETWORK_ID'] = { tag = "network", dt_func = dt_format_network },
|
||||
['SRC_NETWORK_ID'] = { tag = "cli_network", dt_func = dt_format_network },
|
||||
['DST_NETWORK_ID'] = { tag = "srv_network", dt_func = dt_format_network },
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue