mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_http_file_share: Report number of items in caches to statsmanager
This is neat, O(1) reporting, why don't we do this everywhere? Gives you an idea of how much stuff is in the caches, which may help inform decisions on whether the size is appropriate.
This commit is contained in:
parent
7bd2718601
commit
9631d45fcc
1 changed files with 8 additions and 0 deletions
|
@ -62,6 +62,14 @@ local upload_errors = errors.init(module.name, namespace, {
|
|||
local upload_cache = cache.new(1024);
|
||||
local quota_cache = cache.new(1024);
|
||||
|
||||
local measure_upload_cache_size = module:measure("upload_cache", "amount");
|
||||
local measure_quota_cache_size = module:measure("quota_cache", "amount");
|
||||
|
||||
module:hook_global("stats-update", function ()
|
||||
measure_upload_cache_size(upload_cache:count());
|
||||
measure_quota_cache_size(quota_cache:count());
|
||||
end);
|
||||
|
||||
local measure_uploads = module:measure("upload", "sizes");
|
||||
|
||||
-- Convenience wrapper for logging file sizes
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue