Lines Matching full:format
41 requests. Logs are written in a customizable format, and may be
50 to set a custom format, and <code class="directive"><a href="#customlog">CustomLog</a></code> to define a log file and format in one
73 <p>The format argument to the <code class="directive"><a href="#logformat">LogFormat</a></code> and <code class="directive"><a href="#customlog">CustomLog</a></code> directives is a string. This string is
81 placing "<code>%</code>" directives in the format string, which are
84 <table class="bordered"><tr class="header"><th>Format String</th>
99 <td>Size of response in bytes, excluding HTTP headers. In CLF format, <em>i.e.</em>
153 <tr><td><code>%{<var>format</var>}p</code></td>
160 <tr><td><code>%{<var>format</var>}P</code></td>
178 <td>Time the request was received, in the format <code>[18/Sep/2011:19:18:28 -0400]</code>.
180 <tr><td><code>%{<var>format</var>}t</code></td>
181 <td>The time, in the form given by format, which should be in
182 an extended <code>strftime(3)</code> format (potentially localized).
183 If the format starts with <code>begin:</code> (default) the time is taken
187 supported by <code>strftime(3)</code>, the following format tokens are
197 formatting in the same format string. You can use multiple
198 <code>%{<var>format</var>}t</code> tokens instead.
255 <table class="bordered"><tr class="header"><th>Format String</th>
282 <h3><a name="format-notes" id="format-notes">Format Notes</a></h3>
297 <code>%B</code> format strings do not represent the number of
301 format provided by <code class="module"><a href="../mod/mod_logio.html">mod_logio</a></code> will log the
307 <code>%R</code> format string will not return any handler
314 added three-character format to avoid potential conflicts with log
315 formats that use literals adjacent to a format specifier, such as
323 <p>Some commonly used log format strings are:</p>
326 <dt>Common Log Format (CLF)</dt>
329 <dt>Common Log Format with Virtual Host</dt>
332 <dt>NCSA extended/combined log format</dt>
336 <dt>Referer log format</dt>
339 <dt>Agent (Browser) log format</dt>
343 <p>You can use the <code>%{format}t</code> directive multiple
344 times to build up a time format using the extended format tokens
386 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Sets filename and format of log file</td></tr>
388 <var>format</var>|<var>nickname</var>
396 log requests to the server. A log format is specified, and the
443 directive, or it can be an explicit <var>format</var> string as
449 <pre class="prettyprint lang-config"># CustomLog with format nickname
453 # CustomLog with explicit format string
489 <tr><th><a href="directive-dict.html#Description">Description:</a></th><td>Describes a format for use in a log file</td></tr>
490 <tr><th><a href="directive-dict.html#Syntax">Syntax:</a></th><td><code>LogFormat <var>format</var>|<var>nickname</var>
497 <p>This directive specifies the format of the access log
502 this directive sets the log format which will be used by logs
505 <var>format</var> as discussed in the <a href="#formats">custom log
507 <var>nickname</var> to refer to a log format defined in a
512 directive associates an explicit <var>format</var> with a
516 rather than repeating the entire format string. A
519 defines the nickname, it doesn't actually apply the format and make
542 directive, with the exception that it does not allow the log format
544 Instead, the log format is determined by the most recently specified
546 which does not define a nickname. Common Log Format is used if no
547 other format has been specified.</p>