# HG changeset patch # User Kim Alvefur # Date 1475346883 -7200 # Node ID 35ae59a8196d300f635a4ca8f43add25e9088875 # Parent 73fbfd1e820b457b3b6d8f3706da36a2ee653f22 Add some documentation stubs diff -r 73fbfd1e820b -r 35ae59a8196d mod_component_client/README.markdown --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_component_client/README.markdown Sat Oct 01 20:34:43 2016 +0200 @@ -0,0 +1,19 @@ +Introduction +============ + +This module turns Prosody hosts into components of other XMPP servers. + +Configuration +============= + +Example configuration: + +``` {.lua} +VirtualHost "component.example.com" +modules_enabled = { "component_client" } +component_client = { + host = "localhost"; + port = 5347; + secret = "hunter2"; +} +``` diff -r 73fbfd1e820b -r 35ae59a8196d mod_listusers/README.markdown --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_listusers/README.markdown Sat Oct 01 20:34:43 2016 +0200 @@ -0,0 +1,5 @@ +This module adds a command to `prosodyctl` for listing users. + +``` sh +prosodyctl mod_listusers +``` diff -r 73fbfd1e820b -r 35ae59a8196d mod_log_messages_sql/README.markdown --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_log_messages_sql/README.markdown Sat Oct 01 20:34:43 2016 +0200 @@ -0,0 +1,19 @@ +This module logs messages to a SQL database. + +SQL connection options are configured in a `message_log_sql` option, +which has the same syntax as the `sql` option for +[mod_storage_sql][doc:modules:mod_storage_sql]. + +You will need to create the following table in the configured database: + +``` sql +CREATE TABLE `prosodyarchive` ( + `host` TEXT, + `user` TEXT, + `store` TEXT, + `id` INTEGER PRIMARY KEY AUTOINCREMENT, + `when` INTEGER, + `with` TEXT, + `resource` TEXT, + `stanza` TEXT); +``` diff -r 73fbfd1e820b -r 35ae59a8196d mod_measure_storage/README.markdown --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_measure_storage/README.markdown Sat Oct 01 20:34:43 2016 +0200 @@ -0,0 +1,24 @@ +--- +labels: +- 'Stage-Alpha' +summary: Measure storage API operations +--- + +Introduction +============ + +This module collects statistics from storage operations. + +Configuration +============= + +Enable tagged metrics, whatever that is: + +``` {.lua} +measure_storage_tagged_metric = true +``` + +Compatibility +============= + +Requires 0.10