lua-statsd-client
is a Statsd client for
Lua. It supports all Statsd meter types.
% wget https://raw.github.com/stvp/lua-statsd-client/master/rockspecs/statsd-2.0.0-1.rockspec
% luarocks install statsd-2.0.0-1.rockspec
-- require constructor
local Statsd = require "statsd"
-- create statsd object, which will open up a persistent port
local statsd = Statsd({
host = "stats.mysite.com" -- default: 127.0.0.1
port = 8888 -- default: 8125
namespace = "mysite.stats" -- default: none
})
statsd:gauge( "users", #my_users_table )
statsd:counter( "events", 5 )
statsd:increment( "events", 1 )
statsd:decrement( "events", 3 )
statsd:timer( "page_render", 105 )
statsd:histogram( "page_render_time", 105 )
statsd:meter( "page_load", 1 )
% luarocks install busted
% busted spec