mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-29 07:29:32 +00:00
30 lines
No EOL
609 B
Lua
30 lines
No EOL
609 B
Lua
--
|
|
-- (C) 2020-21 - ntop.org
|
|
--
|
|
|
|
local behavior_utils = {}
|
|
|
|
-- ##############################################
|
|
|
|
local behavior_table = {
|
|
asn = {
|
|
page_path = "/lua/as_details.lua",
|
|
timeseries_id = "asn",
|
|
schema_id = "asn",
|
|
},
|
|
network = {
|
|
page_path = "/lua/network_details.lua",
|
|
timeseries_id = "network",
|
|
schema_id = "subnet",
|
|
}
|
|
}
|
|
|
|
-- ##############################################
|
|
|
|
function behavior_utils.get_behavior_timeseries_utils(family_key)
|
|
return behavior_table[family_key]
|
|
end
|
|
|
|
-- ##############################################
|
|
|
|
return behavior_utils |