core.moduleapi: Allow passing a config table trough :measure

This commit is contained in:
Kim Alvefur 2019-01-04 07:00:45 +01:00
parent 401c48015c
commit 1f80e42aa5

View file

@ -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)