mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-13 14:32:55 +00:00
21 lines
554 B
Lua
21 lines
554 B
Lua
--
|
|
-- (C) 2013-24 - ntop.org
|
|
--
|
|
|
|
local dirs = ntop.getDirs()
|
|
package.path = dirs.installdir .. "/scripts/lua/modules/?.lua;" .. package.path
|
|
|
|
local data_retention_utils = require "data_retention_utils"
|
|
|
|
-- ########################################################
|
|
|
|
local interface_id = interface.getId()
|
|
|
|
-- ########################################################
|
|
|
|
local data_retention = data_retention_utils.getTSAndStatsDataRetentionDays()
|
|
|
|
-- ###########################################
|
|
|
|
ntop.deleteMinuteStatsOlderThan(interface_id, data_retention)
|
|
|