mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-08 23:25:13 +00:00
Removed, where it was possible, the lua requires, with the objective of enchanting the performances of periodic activities
16 lines
465 B
Lua
16 lines
465 B
Lua
--
|
|
-- (C) 2013 - ntop.org
|
|
--
|
|
|
|
dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
if (ntop.isPro()) then
|
|
package.path = dirs.installdir .. "/pro/scripts/callbacks/interface/?.lua;" .. package.path
|
|
require('hourly')
|
|
end
|
|
|
|
-- ########################################################
|
|
|
|
local k = string.format("ntopng.cache.ifid_%i.user_scripts.request.granularity_hourly", interface.getId())
|
|
ntop.setCache(k, "1")
|