mod_http_stats_stream

Introduction

This module provides a streaming interface to Prosodys internal statistics via Server-sent events.

Example

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.
 */
evtSource.addEventListener("stats-full", function(e) {
    var 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.
 */
evtSource.addEventListener("stats-updated", function(e) {
    var updated_stats = JSON.parse(e.data);
    console.log(updated_stats);
}, false);

Compatibility


Installation

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