mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
traffic extraction improvements
This commit is contained in:
parent
ded832dfad
commit
b304c68d33
5 changed files with 23 additions and 22 deletions
|
|
@ -100,8 +100,8 @@ for id, _ in pairsByValues(sorter, sOrder) do
|
|||
column_begin_time = format_utils.formatEpoch(job.time_from),
|
||||
column_end_time = format_utils.formatEpoch(job.time_to),
|
||||
column_bpf_filter = ternary(isEmptyString(job.filter), "-", job.filter),
|
||||
column_extracted_packets = ternary(extracted_packets, extracted_packets, "-"),
|
||||
column_extracted_bytes = ternary(extracted_bytes, bytesToSize(extracted_bytes), "-"),
|
||||
column_extracted_packets = ternary(job.extracted_pkts, formatPackets(job.extracted_pkts), "-"),
|
||||
column_extracted_bytes = ternary(job.extracted_bytes, bytesToSize(job.extracted_bytes), "-"),
|
||||
column_actions = action_links
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue