mod_http_health

Simple module adding an endpoint meant to be used for health checks.

Configuration

After installing, enable by adding to modules_enabled like many other modules:

-- in the global section
modules_enabled = {
    -- Other globally enabled modules here...
    "http_health"; -- add
}

Access control

By default only access via localhost is allowed. This can be adjusted with http_health_allow_ips. The following example shows the default:

http_health_allow_ips = { "::1"; "127.0.0.1" }

Access can also be granted to one IP range via CIDR notation:

http_health_allow_cidr = "172.17.2.0/24"

The default for http_health_allow_cidr is empty.

Details

Adds a http://your.prosody.example:5280/health endpoint that returns either HTTP status code 200 when all appears to be good or 500 when any module status has been set to error.

See also


Installation

With the plugin installer in Prosody 0.12 you can use:

sudo prosodyctl install --server=https://modules.prosody.im/rocks/ mod_http_health

For earlier versions see the documentation for installing 3rd party modules