diff options
author | Yann Ylavic <ylavic@apache.org> | 2015-05-26 15:51:29 +0200 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2015-05-26 15:51:29 +0200 |
commit | 84e8dc5f963ffaa29db8dedf81b86f9f93f91095 (patch) | |
tree | 1c3eb660a81fe9b2c7c20fa2d0e8e0acdb7e47e5 /docs/manual/mod/mod_log_config.html.en | |
parent | Follow up to r1676004: revert changes to html files. (diff) | |
download | apache2-84e8dc5f963ffaa29db8dedf81b86f9f93f91095.tar.xz apache2-84e8dc5f963ffaa29db8dedf81b86f9f93f91095.zip |
update transformation
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1681760 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'docs/manual/mod/mod_log_config.html.en')
-rw-r--r-- | docs/manual/mod/mod_log_config.html.en | 36 |
1 files changed, 21 insertions, 15 deletions
diff --git a/docs/manual/mod/mod_log_config.html.en b/docs/manual/mod/mod_log_config.html.en index 547d205e71..b0367b5e35 100644 --- a/docs/manual/mod/mod_log_config.html.en +++ b/docs/manual/mod/mod_log_config.html.en @@ -142,44 +142,42 @@ matching error log line to see what request caused what error.</td></tr> <tr><td><code>%m</code></td> <td>The request method.</td></tr> -<tr class="odd"><td><code>%M</code></td> - <td>The time taken to serve the request, in milliseconds.</td></tr> -<tr><td><code>%{<var>VARNAME</var>}n</code></td> +<tr class="odd"><td><code>%{<var>VARNAME</var>}n</code></td> <td>The contents of note <var>VARNAME</var> from another module.</td></tr> -<tr class="odd"><td><code>%{<var>VARNAME</var>}o</code></td> +<tr><td><code>%{<var>VARNAME</var>}o</code></td> <td>The contents of <code><var>VARNAME</var>:</code> header line(s) in the reply.</td></tr> -<tr><td><code>%p</code></td> +<tr class="odd"><td><code>%p</code></td> <td>The canonical port of the server serving the request.</td></tr> -<tr class="odd"><td><code>%{<var>format</var>}p</code></td> +<tr><td><code>%{<var>format</var>}p</code></td> <td>The canonical port of the server serving the request, or the server's actual port, or the client's actual port. Valid formats are <code>canonical</code>, <code>local</code>, or <code>remote</code>. </td></tr> -<tr><td><code>%P</code></td> +<tr class="odd"><td><code>%P</code></td> <td>The process ID of the child that serviced the request.</td></tr> -<tr class="odd"><td><code>%{<var>format</var>}P</code></td> +<tr><td><code>%{<var>format</var>}P</code></td> <td>The process ID or thread ID of the child that serviced the request. Valid formats are <code>pid</code>, <code>tid</code>, and <code>hextid</code>. <code>hextid</code> requires APR 1.2.0 or higher. </td></tr> -<tr><td><code>%q</code></td> +<tr class="odd"><td><code>%q</code></td> <td>The query string (prepended with a <code>?</code> if a query string exists, otherwise an empty string).</td></tr> -<tr class="odd"><td><code>%r</code></td> +<tr><td><code>%r</code></td> <td>First line of request.</td></tr> -<tr><td><code>%R</code></td> +<tr class="odd"><td><code>%R</code></td> <td>The handler generating the response (if any).</td></tr> -<tr class="odd"><td><code>%s</code></td> +<tr><td><code>%s</code></td> <td>Status. For requests that have been internally redirected, this is the status of the <em>original</em> request. Use <code>%>s</code> for the final status.</td></tr> -<tr><td><code>%t</code></td> +<tr class="odd"><td><code>%t</code></td> <td>Time the request was received, in the format <code>[18/Sep/2011:19:18:28 -0400]</code>. The last number indicates the timezone offset from GMT</td></tr> -<tr class="odd"><td><code>%{<var>format</var>}t</code></td> +<tr><td><code>%{<var>format</var>}t</code></td> <td>The time, in the form given by format, which should be in an extended <code>strftime(3)</code> format (potentially localized). If the format starts with <code>begin:</code> (default) the time is taken @@ -199,8 +197,16 @@ formatting in the same format string. You can use multiple <code>%{<var>format</var>}t</code> tokens instead. </td></tr> -<tr><td><code>%T</code></td> +<tr class="odd"><td><code>%T</code></td> <td>The time taken to serve the request, in seconds.</td></tr> +<tr><td><code>%{<var>UNIT</var>}T</code></td> + <td>The time taken to serve the request, in a time unit given by + <code>UNIT</code>. Valid units are <code>ms</code> for milliseconds, + <code>us</code> for microseconds, and <code>s</code> for seconds. + Using <code>s</code> gives the same result as <code>%T</code> + without any format; using <code>us</code> gives the same result + as <code>%D</code>. Combining <code>%T</code> with a unit is + available in 2.4.13 and later.</td></tr> <tr class="odd"><td><code>%u</code></td> <td>Remote user if the request was authenticated. May be bogus if return status (<code>%s</code>) is 401 (unauthorized).</td></tr> |