mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-05 19:15:03 +00:00
20 lines
560 B
Lua
20 lines
560 B
Lua
--
|
|
-- (C) 2013-23 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/timeseries/?.lua;" .. package.path
|
|
|
|
-- ########################################################
|
|
|
|
local ts_utils = require "ts_utils"
|
|
|
|
-- ########################################################
|
|
|
|
local ifstats = interface.getStats()
|
|
local interface_id = ifstats.id
|
|
|
|
-- ########################################################
|
|
|
|
ts_utils.deleteOldData(interface_id)
|