mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-11 19:30:07 +00:00
22 lines
515 B
Lua
22 lines
515 B
Lua
--
|
|
-- (C) 2013-18 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
require "blacklist_utils"
|
|
|
|
if(ntop.isPro()) then
|
|
package.path = dirs.installdir .. "/pro/scripts/callbacks/system/?.lua;" .. package.path
|
|
pcall(require, 'daily')
|
|
end
|
|
|
|
-- ########################################################
|
|
|
|
-- Delete JSON files older than a 30 days
|
|
-- TODO: make 30 configurable
|
|
harvestJSONTopTalkers(30)
|
|
|
|
loadHostBlackList()
|