mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 10:41:34 +00:00
19 lines
461 B
Lua
19 lines
461 B
Lua
--
|
|
-- (C) 2021 - ntop.org
|
|
--
|
|
|
|
-- ##############################################
|
|
|
|
-- Every datasource must be keyed using one of the following keys
|
|
-- NOTE: integer IDs must be unique
|
|
|
|
local datasource_keys = {
|
|
-- Keys for interface datasources coded in datasources/interface, datasources/host, etc
|
|
interface_packet_distro = 0,
|
|
}
|
|
|
|
-- ##############################################
|
|
|
|
return datasource_keys
|
|
|
|
-- ##############################################
|