ntopng/scripts/lua/rest/v1/get/datasource/datasource_keys.lua
2021-01-26 17:53:39 +01:00

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
-- ##############################################