plugins/mod_http_file_share.lua
changeset 11359 89efa3f2966b
parent 11354 3287dbdde33e
child 11360 43e5429ab355
--- 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;