# HG changeset patch # User Kim Alvefur # Date 1612300131 -3600 # Node ID 89efa3f2966b5ac2172fd2d0f18c4b377f6a7ed6 # Parent 10fba62332c54ccff0235578304c2c1bcb818703 mod_http_file_share: Collect statistics of files uploaded diff -r 10fba62332c5 -r 89efa3f2966b plugins/mod_http_file_share.lua --- a/plugins/mod_http_file_share.lua Mon Feb 01 12:47:05 2021 +0100 +++ b/plugins/mod_http_file_share.lua Tue Feb 02 22:08:51 2021 +0100 @@ -62,6 +62,8 @@ local upload_cache = cache.new(1024); local quota_cache = cache.new(1024); +local measure_uploads = module:measure("upload", "sizes"); + -- Convenience wrapper for logging file sizes local function B(bytes) return hi.format(bytes, "B", "b"); end @@ -255,6 +257,7 @@ if uploaded then module:log("debug", "Upload of %q completed, %s", filename, B(final_size)); assert(os.rename(filename.."~", filename)); + measure_uploads(final_size); upload_cache:set(upload_info.slot, { name = upload_info.filename;