summary refs log tree commit diff
path: root/latest/usage
diff options
context:
space:
mode:
Diffstat (limited to 'latest/usage')
-rw-r--r--latest/usage/administration/request_log.html4
-rw-r--r--latest/usage/configuration/config_documentation.html18
2 files changed, 16 insertions, 6 deletions
diff --git a/latest/usage/administration/request_log.html b/latest/usage/administration/request_log.html

index 2b8b1ebef1..3bcb164ae6 100644 --- a/latest/usage/administration/request_log.html +++ b/latest/usage/administration/request_log.html
@@ -153,14 +153,14 @@ -AAAAAAAAAAAAAAAAAAAAA- -BBBBBBBBBBBBBBBBBBBBBB- -C- -DD- -EEEEEE- -FFFFFFFFF- -GG- -HHHHHHHHHHHHHHHHHHHHHHH- -IIIIII- -JJJJJJJ- -KKKKKK-, -LLLLLL- -MMMMMMM- -NNNNNN- O -P- -QQ- -RRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR- -SSSSSSSSSSSS- -TTTTTT- </code></pre> <table><thead><tr><th>Part</th><th>Explanation</th></tr></thead><tbody> -<tr><td>AAAA</td><td>Timestamp request was logged (not recieved)</td></tr> +<tr><td>AAAA</td><td>Timestamp request was logged (not received)</td></tr> <tr><td>BBBB</td><td>Logger name (<code>synapse.access.(http\|https).&lt;tag&gt;</code>, where 'tag' is defined in the <code>listeners</code> config section, normally the port)</td></tr> <tr><td>CCCC</td><td>Line number in code</td></tr> <tr><td>DDDD</td><td>Log Level</td></tr> <tr><td>EEEE</td><td>Request Identifier (This identifier is shared by related log lines)</td></tr> <tr><td>FFFF</td><td>Source IP (Or X-Forwarded-For if enabled)</td></tr> <tr><td>GGGG</td><td>Server Port</td></tr> -<tr><td>HHHH</td><td>Federated Server or Local User making request (blank if unauthenticated or not supplied)</td></tr> +<tr><td>HHHH</td><td>Federated Server or Local User making request (blank if unauthenticated or not supplied).<br/>If this is of the form `@aaa:example.com</td></tr> <tr><td>IIII</td><td>Total Time to process the request</td></tr> <tr><td>JJJJ</td><td>Time to send response over network once generated (this may be negative if the socket is closed before the response is generated)</td></tr> <tr><td>KKKK</td><td>Userland CPU time</td></tr> diff --git a/latest/usage/configuration/config_documentation.html b/latest/usage/configuration/config_documentation.html
index b2efcc4050..8db17f9cec 100644 --- a/latest/usage/configuration/config_documentation.html +++ b/latest/usage/configuration/config_documentation.html
@@ -488,7 +488,16 @@ configuration.</p> </li> <li> <p><code>x_forwarded</code>: Only valid for an 'http' listener. Set to true to use the X-Forwarded-For header as the client IP. Useful when Synapse is -behind a reverse-proxy.</p> +behind a <a href="../../reverse_proxy.html">reverse-proxy</a>.</p> +</li> +<li> +<p><code>request_id_header</code>: The header extracted from each incoming request that is +used as the basis for the request ID. The request ID is used in +<a href="../administration/request_log.html#request-log-format">logs</a> and tracing to +correlate and match up requests. When unset, Synapse will automatically +generate sequential request IDs. This option is useful when Synapse is behind +a <a href="../../reverse_proxy.html">reverse-proxy</a>.</p> +<p><em>Added in Synapse 1.68.0.</em></p> </li> <li> <p><code>resources</code>: Only valid for an 'http' listener. A list of resources to host @@ -1008,8 +1017,9 @@ on this homeserver.</p> <p>Options related to caching.</p> <hr /> <h3 id="event_cache_size"><a class="header" href="#event_cache_size"><code>event_cache_size</code></a></h3> -<p>The number of events to cache in memory. Not affected by -<code>caches.global_factor</code> and is not part of the <code>caches</code> section. Defaults to 10K.</p> +<p>The number of events to cache in memory. Defaults to 10K. Like other caches, +this is affected by <code>caches.global_factor</code> (see below).</p> +<p>Note that this option is not part of the <code>caches</code> section.</p> <p>Example configuration:</p> <pre><code class="language-yaml">event_cache_size: 15K </code></pre> @@ -1314,7 +1324,7 @@ client is attempting to log into. Defaults to <code>per_second: 0.17</code>, <code>burst_count: 3</code>.</p> </li> <li> -<p><code>failted_attempts</code> ratelimits login requests based on the account the +<p><code>failed_attempts</code> ratelimits login requests based on the account the client is attempting to log into, based on the amount of failed login attempts for this account. Defaults to <code>per_second: 0.17</code>, <code>burst_count: 3</code>.</p> </li>