mirror of
https://github.com/ntop/ntopng.git
synced 2026-04-30 16:09:32 +00:00
17 lines
349 B
Lua
17 lines
349 B
Lua
--
|
|
-- (C) 2013 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
require "lua_utils"
|
|
require "alert_utils"
|
|
|
|
if (ntop.isPro()) then
|
|
package.path = dirs.installdir .. "/pro/scripts/callbacks/?.lua;" .. package.path
|
|
require("hourly")
|
|
end
|
|
|
|
-- Scan "hour" alerts
|
|
scanAlerts("hour")
|