# HG changeset patch # User Marco Cirillo # Date 1326224631 0 # Node ID 3bd927d2ac3347c3924468bda1350f542bbd9a6c # Parent 83603b9ad5dd2542c8b94aa877516393fb84037c renamed mod_xml_status to mod_server_status, changing wiki to reflect that. diff -r 83603b9ad5dd -r 3bd927d2ac33 mod_server_status.wiki --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_server_status.wiki Tue Jan 10 19:43:51 2012 +0000 @@ -0,0 +1,26 @@ +#summary Server status plugin +#labels Stage-Beta + += Introduction = + +This module fetches the current status of configured hosts and/or stanza statistics from [http://code.google.com/p/prosody-modules/wiki/mod_stanza_counter# mod_stanza_counter]. +And outputs it in either XML or JSON format. + += Usage = + +Copy the file into prosody's module directory and place it into your global's enabled modules. + +Configuration example: +{{{ +server_status_http_ports = {{ port = 5280, path = "mystatsbasepath" }} +server_status_show_hosts = { "iwanttoshowifthishostisonline.com", "iwanttoshowifthishostisonline2.com" } +server_status_show_comps = { "muc.iwanttoshowifthishostisonline.com", "transport.iwanttoshowifthishostisonline.com" } +server_status_json = true +}}} + +By default the plugin's output is in XML, setting server_status_json to "true" will turn it into JSON instead. +if mod_stanza_counter isn't loaded the plugin will require at least either server_status_show_hosts or server_status_show_comps to be set. + += Compatibility = + + * 0.8+ Works. diff -r 83603b9ad5dd -r 3bd927d2ac33 mod_xml_status.wiki --- a/mod_xml_status.wiki Sun Jan 08 17:30:52 2012 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,23 +0,0 @@ -#summary XML server status plugin -#labels Stage-Beta - -= Introduction = - -This module fetches the current status of configured hosts and/or stanza statistics from [http://code.google.com/p/prosody-modules/wiki/mod_stanza_counter# mod_stanza_counter]. - -= Usage = - -Copy the file into prosody's module directory and place it into your global's enabled modules. - -Configuration example: -{{{ -xml_status_http_ports = {{ port = 5280, path = "mystatsbasepath" }} -xml_status_show_hosts = { "iwanttoshowifthishostisonline.com", "iwanttoshowifthishostisonline2.com" } -xml_status_show_comps = { "muc.iwanttoshowifthishostisonline.com", "transport.iwanttoshowifthishostisonline.com" } -}}} - -if mod_stanza_counter isn't loaded the plugin will require at least either xml_status_show_hosts or xml_status_show_comps to be set - -= Compatibility = - - * 0.8+ Works.