mod_muc_mam: Measure how long a cleanup run takes (like mod_mam)

This commit is contained in:
Kim Alvefur 2020-01-04 14:05:10 +01:00
parent cd9906cb2d
commit 71138a9fd9

View file

@ -481,7 +481,10 @@ if cleanup_after ~= "never" then
end
end
local cleanup_time = module:measure("cleanup", "times");
cleanup_runner = require "util.async".runner(function ()
local cleanup_done = cleanup_time();
local rooms = {};
local cut_off = datestamp(os.time() - cleanup_after);
for date in cleanup_storage:users() do
@ -512,6 +515,7 @@ if cleanup_after ~= "never" then
end
end
module:log("info", "Deleted %d expired messages for %d rooms", sum, num_rooms);
cleanup_done();
end);
cleanup_task = module:add_timer(1, function ()