mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_muc_mam: Measure how long a cleanup run takes (like mod_mam)
This commit is contained in:
parent
cd9906cb2d
commit
71138a9fd9
1 changed files with 4 additions and 0 deletions
|
@ -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 ()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue