mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-21 10:09:13 +00:00
Removed call to ntop.reloadPeriodicScripts that is no longer required Reworks notifications.lua
16 lines
442 B
Lua
16 lines
442 B
Lua
--
|
|
-- (C) 2013-21 - ntop.org
|
|
--
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/notifications/?.lua;" .. package.path
|
|
|
|
local recipients = require "recipients"
|
|
local periodicity = 3
|
|
|
|
local now = os.time()
|
|
|
|
-- Do the actual processing
|
|
recipients.process_notifications(now, now + periodicity --[[ deadline --]], periodicity)
|