changeset 1443:faf1a5d89cd7

mod_statsd: First commit
author daurnimator <quae@daurnimator.com>
date Mon, 23 Jun 2014 14:19:05 -0400
parents 253e374824a8
children 56c394b9e60d
files mod_statsd/mod_statsd.lua
diffstat 1 files changed, 61 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_statsd/mod_statsd.lua	Mon Jun 23 14:19:05 2014 -0400
@@ -0,0 +1,61 @@
+-- Log common stats to statsd
+--
+-- Copyright (C) 2014 Daurnimator
+--
+-- This module is MIT/X11 licensed.
+
+local socket = require "socket"
+local iterators = require "util.iterators"
+local jid = require "util.jid"
+
+local options = module:get_option("statsd") or {}
+
+-- Create UDP socket to statsd server
+local sock = socket.udp()
+sock:setpeername(options.hostname or "127.0.0.1", options.port or 8125)
+
+-- Metrics are namespaced by ".", and seperated by newline
+function clean(s) return (s:gsub("[%.\n]", "_")) end
+
+-- A 'safer' send function to expose
+function send(s) return sock:send(s) end
+
+-- prefix should end in "."
+local prefix = (options.prefix or ("prosody." .. clean(module.host))) .. "."
+
+-- Track users as they bind/unbind
+-- count bare sessions every time, as we have no way to tell if it's a new bare session or not
+module:hook("resource-bind", function(event)
+	send(prefix.."bare_sessions:"..iterators.count(bare_sessions).."|g")
+	send(prefix.."full_sessions:+1|g")
+end, 1)
+module:hook("resource-unbind", function(event)
+	send(prefix.."bare_sessions:"..iterators.count(bare_sessions).."|g")
+	send(prefix.."full_sessions:-1|g")
+end, 1)
+
+-- Track MUC occupants as they join/leave
+module:hook("muc-occupant-joined", function(event)
+	send(prefix.."n_occupants:+1|g")
+	local room_node = jid.split(event.room.jid)
+	send(prefix..clean(room_node)..".occupants:+1|g")
+end)
+module:hook("muc-occupant-left", function(event)
+	send(prefix.."n_occupants:-1|g")
+	local room_node = jid.split(event.room.jid)
+	send(prefix..clean(room_node)..".occupants:-1|g")
+end)
+
+-- Misc other MUC
+module:hook("muc-broadcast-message", function(event)
+	send(prefix.."broadcast-message:1|c")
+	local room_node = jid.split(event.room.jid)
+	send(prefix..clean(room_node)..".broadcast-message:1|c")
+end)
+module:hook("muc-invite", function(event)
+	send(prefix.."invite:1|c")
+	local room_node = jid.split(event.room.jid)
+	send(prefix..clean(room_node)..".invite:1|c")
+	local to_node, to_host, to_resource = jid.split(event.stanza.attr.to)
+	send(prefix..clean(to_node)..".invites:1|c")
+end)