Updated Branches: refs/heads/master 0c953e129 -> 90af89c47
[TS-2328] Document failover configuration for log collation Project: http://git-wip-us.apache.org/repos/asf/trafficserver/repo Commit: http://git-wip-us.apache.org/repos/asf/trafficserver/commit/5871b0af Tree: http://git-wip-us.apache.org/repos/asf/trafficserver/tree/5871b0af Diff: http://git-wip-us.apache.org/repos/asf/trafficserver/diff/5871b0af Branch: refs/heads/master Commit: 5871b0af68d9a6e17e00efb09600c550188247c5 Parents: 3388fd8 Author: Miles Libbey <[email protected]> Authored: Fri Dec 13 10:55:21 2013 -0800 Committer: Miles Libbey <[email protected]> Committed: Fri Dec 13 10:55:21 2013 -0800 ---------------------------------------------------------------------- doc/reference/configuration/logs_xml.config.en.rst | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/trafficserver/blob/5871b0af/doc/reference/configuration/logs_xml.config.en.rst ---------------------------------------------------------------------- diff --git a/doc/reference/configuration/logs_xml.config.en.rst b/doc/reference/configuration/logs_xml.config.en.rst index 1d2a057..92d90f1 100644 --- a/doc/reference/configuration/logs_xml.config.en.rst +++ b/doc/reference/configuration/logs_xml.config.en.rst @@ -217,12 +217,18 @@ The following list shows the ``LogObject`` specifications. .. _logs-xml-logobject-collationhost: -``<CollationHosts = "list_of_valid_hostnames"/>`` +``<CollationHosts = "list_of_valid_hostnames:port|failover hosts"/>`` Optional - A comma-separated list of collation servers to which all log entries - (for this object) are forwarded. Collation servers can be specified - by name or IP address. Specify the collation port with a colon after - the name; for example, ``host:port`` . + A comma-separated list of collation servers (with pipe delimited + failover servers) to which all log entries (for this object) are + forwarded. Collation servers can be specified by name or IP address. + Specify the collation port with a colon after the name. For example, + in ``host1:5000|failhostA:5000|failhostB:6000, host2:6000`` logs + would be sent to host1 and host2, with failhostA and failhostB + acting as failover hosts for host1. When host1 disconnects, + logs would be sent to failhostA. If failhostA disconnects, log + entries would be sent to failhostB until host1 or failhostA comes + back. Logs would also be sent to host2. ``<Header = "header"/>`` Optional
