From 84e8dc5f963ffaa29db8dedf81b86f9f93f91095 Mon Sep 17 00:00:00 2001 From: Yann Ylavic Date: Tue, 26 May 2015 13:51:29 +0000 Subject: update transformation git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1681760 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_log_config.html.en | 36 ++++++++++++++++++++-------------- 1 file changed, 21 insertions(+), 15 deletions(-) (limited to 'docs/manual/mod/mod_log_config.html.en') 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. %m The request method. -%M - The time taken to serve the request, in milliseconds. -%{VARNAME}n +%{VARNAME}n The contents of note VARNAME from another module. -%{VARNAME}o +%{VARNAME}o The contents of VARNAME: header line(s) in the reply. -%p +%p The canonical port of the server serving the request. -%{format}p +%{format}p The canonical port of the server serving the request, or the server's actual port, or the client's actual port. Valid formats are canonical, local, or remote. -%P +%P The process ID of the child that serviced the request. -%{format}P +%{format}P The process ID or thread ID of the child that serviced the request. Valid formats are pid, tid, and hextid. hextid requires APR 1.2.0 or higher. -%q +%q The query string (prepended with a ? if a query string exists, otherwise an empty string). -%r +%r First line of request. -%R +%R The handler generating the response (if any). -%s +%s Status. For requests that have been internally redirected, this is the status of the original request. Use %>s for the final status. -%t +%t Time the request was received, in the format [18/Sep/2011:19:18:28 -0400]. The last number indicates the timezone offset from GMT -%{format}t +%{format}t The time, in the form given by format, which should be in an extended strftime(3) format (potentially localized). If the format starts with begin: (default) the time is taken @@ -199,8 +197,16 @@ formatting in the same format string. You can use multiple %{format}t tokens instead. -%T +%T The time taken to serve the request, in seconds. +%{UNIT}T + The time taken to serve the request, in a time unit given by + UNIT. Valid units are ms for milliseconds, + us for microseconds, and s for seconds. + Using s gives the same result as %T + without any format; using us gives the same result + as %D. Combining %T with a unit is + available in 2.4.13 and later. %u Remote user if the request was authenticated. May be bogus if return status (%s) is 401 (unauthorized). -- cgit v1.2.3