diff options
author | Kim Alvefur <zash@zash.se> | 2019-01-06 09:34:59 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-01-06 09:34:59 +0100 |
commit | fa09b8372d173408df3cb468d9e1b5098c783f31 (patch) | |
tree | 0664457c3c56866066320810ca02553262a9ddb1 | |
parent | 9e01c3ff642670c8b10a20686f7a6e100ad08fe9 (diff) | |
download | prosody-fa09b8372d173408df3cb468d9e1b5098c783f31.tar.gz prosody-fa09b8372d173408df3cb468d9e1b5098c783f31.zip |
mod_mam: Measure how long it takes to run the message expiry job job
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 35a4b9a0..5ba04d68 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -351,8 +351,10 @@ if cleanup_after ~= "never" then function schedule_cleanup(username, date) cleanup_map:set(date or datestamp(), username, true); end + local cleanup_time = module:measure("cleanup", "times"); cleanup_runner = require "util.async".runner(function () + local cleanup_done = cleanup_time(); local users = {}; local cut_off = datestamp(os.time() - cleanup_after); for date in cleanup_storage:users() do @@ -376,6 +378,7 @@ if cleanup_after ~= "never" then end end module:log("info", "Deleted %d expired messages for %d users", sum, num_users); + cleanup_done(); end); cleanup_task = module:add_timer(1, function () |