mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 05:07:42 +03:00
core.moduleapi: Allow passing a config table trough :measure
This commit is contained in:
parent
401c48015c
commit
1f80e42aa5
1 changed files with 2 additions and 2 deletions
|
@ -508,9 +508,9 @@ function api:open_store(name, store_type)
|
|||
return require"core.storagemanager".open(self.host, name or self.name, store_type);
|
||||
end
|
||||
|
||||
function api:measure(name, stat_type)
|
||||
function api:measure(name, stat_type, conf)
|
||||
local measure = require "core.statsmanager".measure;
|
||||
return measure(stat_type, "/"..self.host.."/mod_"..self.name.."/"..name);
|
||||
return measure(stat_type, "/"..self.host.."/mod_"..self.name.."/"..name, conf);
|
||||
end
|
||||
|
||||
function api:measure_object_event(events_object, event_name, stat_name)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue