From e45dee37bd6a37e4ad4d7514edb10a639764e01b Mon Sep 17 00:00:00 2001 From: Kim Alvefur Date: Tue, 2 Feb 2021 22:11:53 +0100 Subject: mod_http_file_share: Measure how long it takes to prune expired files --- plugins/mod_http_file_share.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/mod_http_file_share.lua b/plugins/mod_http_file_share.lua index 275ebaff..9b933b25 100644 --- a/plugins/mod_http_file_share.lua +++ b/plugins/mod_http_file_share.lua @@ -354,9 +354,11 @@ if expiry >= 0 and not external_base_url then local reaper_task = async.runner(function(boundary_time) local iter, total = assert(uploads:find(nil, {["end"] = boundary_time; total = true})); + local prune_done = module:measure("prune", "times"); if total == 0 then module:log("info", "No expired uploaded files to prune"); + prune_done(); return; end @@ -400,6 +402,7 @@ if expiry >= 0 and not external_base_url then module:log("error", "Problem removing metadata for deleted files: %s", err); end + prune_done(); end); module:add_timer(1, function () -- cgit v1.2.3