diff options
author | Matthew Wild <mwild1@gmail.com> | 2016-07-27 14:06:10 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2016-07-27 14:06:10 +0100 |
commit | 79940f40e79e453383693bb7e2559e3e335b87dc (patch) | |
tree | 62c633836426387d8e6d4b61a5b170acf7fddeeb /core | |
parent | 0f8377e56a0fa4e6a46c96195445aeee07557c58 (diff) | |
download | prosody-79940f40e79e453383693bb7e2559e3e335b87dc.tar.gz prosody-79940f40e79e453383693bb7e2559e3e335b87dc.zip |
statsmanager, util.statsd: Add built-in statsd provider
Diffstat (limited to 'core')
-rw-r--r-- | core/statsmanager.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/statsmanager.lua b/core/statsmanager.lua index d103c6a7..9572f68d 100644 --- a/core/statsmanager.lua +++ b/core/statsmanager.lua @@ -15,6 +15,7 @@ local stats_provider = stats_provider_config or "internal"; local builtin_providers = { internal = "util.statistics"; + statsd = "util.statsd"; }; if stats_provider:match("^library:") then |