aboutsummaryrefslogtreecommitdiffstats
path: root/util/statsd.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-11-05 22:31:25 +0100
committerKim Alvefur <zash@zash.se>2020-11-05 22:31:25 +0100
commit238b2bfc1cdb65ae7d051c2f29c1427149317795 (patch)
tree58547de6e7795740633c1b93e67c217eb621fe8f /util/statsd.lua
parentce3e3808f5359f481f3ea063220ba71428b26ad5 (diff)
parent48521ba1538f797f5bef64f5fe5f3a9fb6e68f7f (diff)
downloadprosody-238b2bfc1cdb65ae7d051c2f29c1427149317795.tar.gz
prosody-238b2bfc1cdb65ae7d051c2f29c1427149317795.zip
Merge 0.11->trunk
Diffstat (limited to 'util/statsd.lua')
-rw-r--r--util/statsd.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/util/statsd.lua b/util/statsd.lua
index 67481c36..8f6151c6 100644
--- a/util/statsd.lua
+++ b/util/statsd.lua
@@ -38,13 +38,13 @@ local function new(config)
local methods;
methods = {
- amount = function (name, initial)
- if initial then
- send_gauge(name, initial);
+ amount = function (name, conf)
+ if conf and conf.initial then
+ send_gauge(name, conf.initial);
end
return function (new_v) send_gauge(name, new_v); end
end;
- counter = function (name, initial) --luacheck: ignore 212/initial
+ counter = function (name, conf) --luacheck: ignore 212/conf
return function (delta)
send_gauge(name, delta, true);
end;
@@ -54,7 +54,7 @@ local function new(config)
send_counter(name, 1);
end;
end;
- distribution = function (name, unit, type) --luacheck: ignore 212/unit 212/type
+ distribution = function (name, conf) --luacheck: ignore 212/conf
return function (value)
send_histogram_sample(name, value);
end;