mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
moduleapi: Lazy-load statsmanager on demand
This commit is contained in:
parent
5884db59cc
commit
b58c44e43a
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,6 @@ local logger = require "util.logger";
|
|||
local pluginloader = require "util.pluginloader";
|
||||
local timer = require "util.timer";
|
||||
local resolve_relative_path = require"util.paths".resolve_relative_path;
|
||||
local measure = require "core.statsmanager".measure;
|
||||
local st = require "util.stanza";
|
||||
|
||||
local t_insert, t_remove, t_concat = table.insert, table.remove, table.concat;
|
||||
|
@ -411,6 +410,7 @@ function api:open_store(name, store_type)
|
|||
end
|
||||
|
||||
function api:measure(name, stat_type)
|
||||
local measure = require "core.statsmanager".measure;
|
||||
return measure(stat_type, "/"..self.host.."/mod_"..self.name.."/"..name);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue