This module provides a streaming interface to Prosodys internal statistics via Server-sent events.
var evtSource = new EventSource("/stats_stream");
/*
* An event with all current statistics in the form of a JSON object.
* Normally sent only once, when first connected to the stream.
*/
.addEventListener("stats-full", function(e) {
evtSourcevar initial_stats = JSON.parse(e.data);
console.log(initial_stats);
, false);
}
/*
* An event containing only statistics that have changed since the last
* 'stats-full' or 'stats-updated' event.
*/
.addEventListener("stats-updated", function(e) {
evtSourcevar updated_stats = JSON.parse(e.data);
console.log(updated_stats);
, false); }
With the plugin installer in Prosody 0.12 you can use:
sudo prosodyctl install --server=https://modules.prosody.im/rocks/ mod_http_stats_stream
For earlier versions see the documentation for installing 3rd party modules