mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 07:59:35 +00:00
26 lines
No EOL
739 B
Lua
26 lines
No EOL
739 B
Lua
--
|
|
-- (C) 2019-24 - ntop.org
|
|
--
|
|
|
|
local field_units = {
|
|
seconds = "field_units.seconds",
|
|
bytes = "field_units.bytes",
|
|
flows = "field_units.flows",
|
|
packets = "field_units.packets",
|
|
mbits = "field_units.mbits",
|
|
hosts = "field_units.hosts",
|
|
syn_sec = "field_units.syn_sec",
|
|
flow_sec = "field_units.flow_sec",
|
|
icmp_flow_sec = "field_units.icmp_flow_sec",
|
|
percentage = "field_units.percentage",
|
|
syn_min = "field_units.syn_min",
|
|
fin_min = "field_units.fin_min",
|
|
rst_min = "field_units.rst_min",
|
|
contacts = "field_units.contacts",
|
|
score = "field_units.score",
|
|
per_host_score = "field_units.per_host_score",
|
|
macs = "field_units.macs",
|
|
exceptions = "field_units.exceptions"
|
|
}
|
|
|
|
return field_units |