mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_http_file_share: Measure current total usage
In order to allow monitoring. Especially as there's not much in the way of hard numbers on how much space gets used.
This commit is contained in:
parent
db40eba655
commit
9af7bb723b
1 changed files with 7 additions and 0 deletions
|
@ -70,10 +70,17 @@ local total_storage_usage = nil;
|
|||
|
||||
local measure_upload_cache_size = module:measure("upload_cache", "amount");
|
||||
local measure_quota_cache_size = module:measure("quota_cache", "amount");
|
||||
local measure_total_storage_usage = nil;
|
||||
if total_storage_limit then
|
||||
measure_total_storage_usage = module:measure("total_storage", "amount", { unit = "bytes" });
|
||||
end
|
||||
|
||||
module:hook_global("stats-update", function ()
|
||||
measure_upload_cache_size(upload_cache:count());
|
||||
measure_quota_cache_size(quota_cache:count());
|
||||
if total_storage_limit then
|
||||
measure_total_storage_usage(total_storage_usage);
|
||||
end
|
||||
end);
|
||||
|
||||
local buckets = {};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue