Mercurial > prosody-modules
view mod_http_host_status_check/README.markdown @ 3953:2c6d5734ae04
mod_rest: Add JSON mapping of XEP-0128: Service Discovery Extensions
Example XEP-0157 payload:
{
"disco" : {
"extensions" : {
"http://jabber.org/network/serverinfo" : {
"abuse-addresses" : [
"mailto:abuse@shakespeare.lit",
"xmpp:abuse@shakespeare.lit"
],
"admin-addresses" : [
"mailto:admin@shakespeare.lit",
"xmpp:admin@shakespeare.lit"
],
"feedback-addresses" : [
"http://shakespeare.lit/feedback.php",
"mailto:feedback@shakespeare.lit",
"xmpp:feedback@shakespeare.lit"
],
"sales-addresses" : [
"xmpp:bard@shakespeare.lit"
],
"security-addresses" : [
"xmpp:security@shakespeare.lit"
],
"support-addresses" : [
"http://shakespeare.lit/support.php",
"xmpp:support@shakespeare.lit"
]
}
}
}
}
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Mon, 23 Mar 2020 19:03:04 +0100 |
parents | 2a16a6c67288 |
children | 694b62d8a82f |
line wrap: on
line source
--- labels: Stage-Beta summary: HTTP Host Status Check ... Introduction ============ This module exposes serves over HTTP the information collected by [mod\_host\_status\_check] and [mod\_host\_status\_heartbeat] in a convenient format for automated monitoring tools. Configuration ============= [mod\_http\_status\_check] relies on Prosodys HTTP server and mod\_http for serving HTTP requests. See [Prosodys HTTP server documentation][doc:http] for information about how to configure ports, HTTP Host names etc. Simply add this module to modules\_enabled for the host you would like to serve it from. There is a single configuration option: ``` {.lua} -- The maximum number of seconds that a host can go without sending a heartbeat, -- before we mark it as TIMEOUT (default: 5) status_check_heartbeat_threshold = 5; ``` Compatibility ============= Works with Prosody 0.9.x and later.