mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-01 00:19:33 +00:00
20 lines
499 B
Lua
20 lines
499 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,
|
|
snmp_device_interfaces_status = 1,
|
|
}
|
|
|
|
-- ##############################################
|
|
|
|
return datasource_keys
|
|
|
|
-- ##############################################
|