From: Andre Malo This module provides for flexible logging of client
requests. Logs are written in a customizable format, and may be
written directly to a file, or to an external program.
@@ -19,21 +18,21 @@
of the request. Three directives are provided by this module:
- TransferLog
to create a log file,
- LogFormat
to set a custom format, and
- CustomLog
to define a log file and format in one
- step. The TransferLog
and CustomLog
- directives can be used multiple times in each server to cause
- each request to be logged to multiple files.
The format argument to the LogFormat
and
- CustomLog
directives is a string. This string is
+
The format argument to the
The characteristics of the request itself are logged by - placing "%" directives in the format string, which are replaced - in the log file by the values as follows:
+ placing "%
" directives in the format string, which are
+ replaced in the log file by the values as follows:
+
+ Format String | +Description |
---|
%...a |
+ Remote IP-address |
%...a: | -Remote IP-address |
%...A |
+ Local IP-address |
%...A: | -Local IP-address |
%...B |
+ Bytes sent, excluding HTTP headers. |
%...B: | -Bytes sent, excluding HTTP headers. |
%...b |
+ Bytes sent, excluding HTTP headers. In CLF format, i.e.
+ a '- ' rather than a 0 when no bytes are sent. |
%...b: | -Bytes sent, excluding HTTP headers. In CLF format -i.e. a '-' rather than a 0 when no bytes are sent. |
%...{Foobar}C |
+ The contents of cookie Foobar in the request sent + to the server. |
%...{Foobar}C: | -The contents of cookie "Foobar" in the request sent to the server. |
%...D |
+ The time taken to serve the request, in microseconds. |
%...D: | -The time taken to serve the request, in microseconds. |
%...{FOOBAR}e |
+ The contents of the environment variable + FOOBAR |
%...{FOOBAR}e: | -The contents of the environment variable FOOBAR |
%...f |
+ Filename |
%...f: | -Filename |
%...h |
+ Remote host |
%...h: | -Remote host |
%...H |
+ The request protocol |
%...H | -The request protocol |
%...{Foobar}i |
+ The contents of Foobar: header line(s)
+ in the request sent to the server. |
%...{Foobar}i: | -The contents of Foobar: header line(s) in the request -sent to the server. |
%...l |
+ Remote logname (from identd, if supplied) |
%...l: | -Remote logname (from identd, if supplied) |
%...m |
+ The request method |
%...m: | -The request method |
%...{Foobar}n |
+ The contents of note Foobar from another + module. |
%...{Foobar}n: | -The contents of note "Foobar" from another module. |
%...{Foobar}o |
+ The contents of Foobar: header line(s)
+ in the reply. |
%...{Foobar}o: | -The contents of Foobar: header line(s) in the reply. |
%...p |
+ The canonical port of the server serving the request |
%...p: | -The canonical Port of the server serving the request |
%...P |
+ The process ID of the child that serviced the request. |
%...P: | -The process ID of the child that serviced the request. |
%...q |
+ The query string (prepended with a ? if a query
+ string exists, otherwise an empty string) |
%...q: | -The query string (prepended with a ? if a query string exists, -otherwise an empty string) |
%...r |
+ First line of request |
%...r: | -First line of request |
%...s |
+ Status. For requests that got internally redirected, this is
+ the status of the *original* request --- %...>s
+ for the last. |
%...s: | -Status. For requests that got internally redirected, this is -the status of the *original* request --- %...>s for the last. |
%...t |
+ Time, in common log format time format (standard english + format) |
%...t: | -Time, in common log format time format (standard english format) |
%...{format}t |
+ The time, in the form given by format, which should be in
+ strftime(3) format. (potentially localized) |
%...{format}t: | -The time, in the form given by format, which should -be in strftime(3) format. (potentially localized) |
%...T |
+ The time taken to serve the request, in seconds. |
%...T: | -The time taken to serve the request, in seconds. |
%...u |
+ Remote user (from auth; may be bogus if return status
+ (%s ) is 401) |
%...u: | -Remote user (from auth; may be bogus if return status (%s) is 401) |
%...U |
+ The URL path requested, not including any query string. |
%...U: | -The URL path requested, not including any query string. |
%...v |
+ The canonical |
%...v: | -The canonical ServerName of the server serving the request. |
%...V |
+ The server name according to the |
%...V: | -The server name according to the UseCanonicalName setting. |
%...X |
+ Connection status when response is completed: - |
%...X: | -Connection status when response is completed.
- -'+' = connection may be kept alive after the response is sent. -'-' = connection will be closed after the response is sent. - |
X = |
+ connection aborted before the response completed. |
+ = |
+ connection may be kept alive after the response is + sent. |
- = |
+ connection will be closed after the response is + sent. |
(This directive was %...c
in late versions of Apache
+ 1.3, but this conflicted with the historical ssl
+ %...{var}c
syntax.)
%...I
%...O
The "..." can be nothing at all (e.g., "%h %u
- %r %s %b"
), or it can indicate conditions for inclusion
- of the item (which will cause it to be replaced with "-" if the
- condition is not met). The forms of condition are a list of
+
The "..." can be nothing at all (e.g.,
+ "%h %u %r %s %b"
), or it can indicate conditions for
+ inclusion of the item (which will cause it to be replaced with "-" if
+ the condition is not met). The forms of condition are a list of
HTTP status codes, which may or may not be preceded by "!".
- Thus, "%400,501{User-agent}i" logs User-agent: on 400 errors
- and 501 errors (Bad Request, Not Implemented) only;
- "%!200,304,302{Referer}i" logs Referer: on all requests which
- did not return some sort of normal status.
User-agent:
on 400
+ errors and 501 errors (Bad Request, Not Implemented) only;
+ "%!200,304,302{Referer}i" logs Referer:
on all requests
+ which did not return some sort of normal status.
Note that there is no escaping performed on the strings from - %...r, %...i and %...o. This is mainly to comply with the - requirements of the Common Log Format. This implies that - clients can insert control characters into the log, so care - should be taken when dealing with raw log files.
+%...r
, %...i
and %...o
. This
+ is mainly to comply with the requirements of the Common Log Format.
+ This implies that clients can insert control characters into the log,
+ so care should be taken when dealing with raw log files.
Some commonly used log format strings are:
"%h %l %u %t \"%r\" %>s %b"
"%v %h %l %u %t \"%r\" %>s %b"
"%h %l %u %t \"%r\" %>s %b \"%{Referer}i\"
\"%{User-agent}i\""
"%{Referer}i -> %U"
"%{User-agent}i"
Note that the canonical ServerName and Listen of the server serving the +
Note that the canonical %v
and %p
- respectively. This happens regardless of the UseCanonicalName setting
+ respectively. This happens regardless of the
See the security tips document for details on why your security could be compromised if the directory where logfiles are stored is writable by anyone other than the user that starts the server.
- -The mod_cookies
,
and is deprecated.
The
|
", followed by the path
to a program to receive the log information on its standard
- input. Security: if a program is used, then
- it will be run under the user who started httpd. This will be
- root if the server was started by root; be sure that the
- program is secure.If a program is used, then it will be run under the user who + started httpd. This will be root if the server was started by root; + be sure that the program is secure.
+The second argument specifies what will be written to the - log file. It can specify either a nickname defined by - a previous LogFormat directive, or it - can be an explicit format string as described in the - log formats section.
+ log file. It can specify either a nickname defined by + a previousFor example, the following two sets of directives have exactly the same effect:
-The third argument is optional and allows the decision on
whether or not to log a particular request to be based on the
presence or absence of a particular variable in the server
environment. If the specified environment
variable is set for the request (or is not set, in the case
- of a 'env=!name
' clause), then the
+ of a 'env=!name
' clause), then the
request will be logged.
Environment variables can be set on a per-request +
Environment variables can be set on a per-request
basis using the
This directive specifies the format of the access log
@@ -336,63 +336,55 @@ host
this directive sets the log format which will be used by logs
specified in subsequent
The second form of the
For example:
- -%
).
+
+ This directive has exactly the same arguments and effect as
- the
Example:
-