You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by di...@apache.org on 2010/02/03 23:23:02 UTC

svn commit: r906268 - /incubator/trafficserver/site/trunk/docs/admin/logfmts.htm

Author: dianes
Date: Wed Feb  3 22:23:01 2010
New Revision: 906268

URL: http://svn.apache.org/viewvc?rev=906268&view=rev
Log:
incremental ckin

Modified:
    incubator/trafficserver/site/trunk/docs/admin/logfmts.htm

Modified: incubator/trafficserver/site/trunk/docs/admin/logfmts.htm
URL: http://svn.apache.org/viewvc/incubator/trafficserver/site/trunk/docs/admin/logfmts.htm?rev=906268&r1=906267&r2=906268&view=diff
==============================================================================
--- incubator/trafficserver/site/trunk/docs/admin/logfmts.htm (original)
+++ incubator/trafficserver/site/trunk/docs/admin/logfmts.htm Wed Feb  3 22:23:01 2010
@@ -1,463 +1,460 @@
-<html>
-  <head>
-    <title>Event Logging Formats</title>
-<meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
-<link rel="stylesheet" href="doc.css" type="text/css" media="all" /></head>
-  <body>
-  <h1><a name="31386">Appendix D - Event Logging Formats</a>
-  </h1>
-
-     <p>       This appendix contains the following sections:      </p>
-<ul>
-<li><a href="#66912"><em>Custom Logging Fields</em></a> provides descriptions of  logging fields.</li>
-<li><a href="#63460"><em>Logging Format Cross-Reference</em></a> provides cross-references between Trafic Server logging fields and Netscape &amp; Squid logging fields (including Netscape Extended and Extended-2 fields).</li>
-</ul>            
-        
-     <h2>
-     <a name="66912"> Custom Logging Fields</a>     </h2>
-     <p>       The following table describes Traffic Server custom logging fields.  </p>
-     <table border="1">
-       <tr>
-         <th> <p> %&lt;field symbol&gt;</p></th>
-         <th> <p> Description</p></th>
-       </tr>
-       <tr>
-         <td><p> {HTTP header field name}cqh</p></td>
-         <td><p> Logs the information in the requested field of the client request HTTP header; for example, <code> %&lt;{Accept-Language}cqh&gt;</code> logs the Accept-Language: field in client request headers. </p></td>
-       </tr>
-       <tr>
-         <td><p> {HTTP header field name}pqh</p></td>
-         <td><p> Logs the information in the requested field of the proxy request HTTP header; for example, <code> %&lt;{Authorization}pqh&gt;</code> logs the Authorization: field in proxy request headers. </p></td>
-       </tr>
-       <tr>
-         <td><p> {HTTP header field name}psh</p></td>
-         <td><p> Logs the information in the requested field of the proxy response HTTP header; for example, <code> %&lt;{Retry-After}psh&gt;</code> logs the Retry-After: field in proxy response headers. </p></td>
-       </tr>
-       <tr>
-         <td><p> {HTTP header field name}ssh</p></td>
-         <td><p> Logs the information in the requested field of the server response HTTP header; for example, <code> %&lt;{Age}ssh&gt;</code> logs the Age: field in server response headers. </p></td>
-       </tr>
-       <tr>
-         <td><p> band</p></td>
-         <td><p> The bandwidth of data sent to the client player.</p></td>
-       </tr>
-       <tr>
-         <td><p> caun</p></td>
-         <td><p> The client authenticated username; result of the RFC931/ident lookup of the client username.</p></td>
-       </tr>
-       <tr>
-         <td><p> cfsc</p></td>
-         <td><p> The client finish status code; specifies whether the client request to Traffic Server was successfully completed (FIN) or interrupted (INTR).</p></td>
-       </tr>
-       <tr>
-         <td><p> chi</p></td>
-         <td><p> The IP address of the client's host machine.</p></td>
-       </tr>
-       <tr>
-         <td><p> cqbl</p></td>
-         <td><p> The client request transfer length; the body length in the client request to Traffic Server in bytes.</p></td>
-       </tr>
-       <tr>
-         <td><p> cqhl</p></td>
-         <td><p> The client request header length; the header length in the client request to Traffic Server.</p></td>
-       </tr>
-       <tr>
-         <td><p> cqhm</p></td>
-         <td><p> The HTTP method in the client request to Traffic Server: GET, POST, and so on (subset of cqtx).</p></td>
-       </tr>
-       <tr>
-         <td><p> cqhv</p></td>
-         <td><p> The client request HTTP version.</p></td>
-       </tr>
-       <tr>
-         <td><p> cqtd</p></td>
-         <td><p> The client request timestamp; specifies the date of the client request in the format yyyy-mm-dd, where yyyy is the 4-digit year, mm is the 2-digit month, and dd is the 2-digit day.</p></td>
-       </tr>
-       <tr>
-         <td><p> cqtn</p></td>
-         <td><p> The client request timestamp; date and time of the client's request (in the Netscape timestamp format).</p></td>
-       </tr>
-       <tr>
-         <td><p> cqtq</p></td>
-         <td><p> The client request timestamp with millisecond resolution.</p></td>
-       </tr>
-       <tr>
-         <td><p> cqts</p></td>
-         <td><p> The client-request timestamp in Squid format; the time of the client request in seconds since January 1, 1970 UTC (with millisecond resolution).</p></td>
-       </tr>
-       <tr>
-         <td><p> cqtt</p></td>
-         <td><p> The client request timestamp; the time of the client request in the format hh:mm:ss, where hh is the two-digit hour in 24-hour format, mm is the two-digit minutes, and ss is the 2-digit seconds; for example, 16:01:19.</p></td>
-       </tr>
-       <tr>
-         <td><p> cqtx</p></td>
-         <td><p> The full HTTP client request text, minus headers; for example, </p>
-             <p> <code> GET http://www.company.com HTTP/1.0</code> </p>
-           <p> In reverse proxy mode, Traffic Server logs the rewritten (mapped) URL (according to the rules in the <code> remap.config</code> file), <em CLASS="Emphasis"> not</em> the pristine (unmapped) URL. To configure Traffic Server to log the original, unmapped URL, set the variable <code> proxy.config.url_remap.pristine_host_hdr</code> in the <code> records.config</code> file to <code> 1</code> .</p></td>
-       </tr>
-       <tr>
-         <td><p> cqu</p></td>
-         <td><p> The universal resource identifier (URI) of the request from client to Traffic Server (subset of <code> cqtx</code> ).</p>
-             <p> In reverse proxy mode, Traffic Server logs the rewritten (mapped) URL (according to the rules in the <code> remap.config</code> file), <em CLASS="Emphasis"> not</em> the pristine (unmapped) URL. To configure Traffic Server to log the original, unmapped URL, set the variable <code> proxy.config.url_remap.pristine_host_hdr</code> in the <code> records.config</code> file to <code> 1</code> .</p></td>
-       </tr>
-       <tr>
-         <td><p> cquc</p></td>
-         <td><p> The client request canonical URL; differs from cqu in that blanks (and other characters that might not be parsed by log analysis tools) are replaced by escape sequences. The escape sequence is a percentage sign followed by the ASCII code number in hex.</p>
-             <p> In reverse proxy mode, Traffic Server logs the rewritten (mapped) URL (according to the rules in the <code> remap.config</code> file), <em CLASS="Emphasis"> not</em> the pristine (unmapped) URL. To configure Traffic Server to log the original, unmapped URL, set the variable <code> proxy.config.url_remap.pristine_host_hdr</code> in the <code> records.config</code> file to <code> 1</code> .</p></td>
-       </tr>
-       <tr>
-         <td><p> cqup</p></td>
-         <td><p> The client request URL path; specifies the argument portion of the URL (everything after the host); for example, if the URL is <br />
-                 <code> http://www.company.com/images/x.gif</code> , then this field displays <code> /images/x.gif</code> .</p></td>
-       </tr>
-       <tr>
-         <td><p> cqus</p></td>
-         <td><p> The client request URL scheme.</p></td>
-       </tr>
-       <tr>
-         <td><p> cquuc</p></td>
-         <td><p> The client request unmapped URL canonical. This field records a URL before it is remapped (reverse proxy mode).</p></td>
-       </tr>
-       <tr>
-         <td><p> crc</p></td>
-         <td><p> The cache result code; specifies how the cache responded to the request (HIT, MISS, and so on).</p></td>
-       </tr>
-       <tr>
-         <td><p> fsiz</p></td>
-         <td><p> The size of the file, in bytes, as seen by the origin server. </p>
-             <p> Windows Media Player sees a smaller size in the case of multibitrate clips.</p></td>
-       </tr>
-       <tr>
-         <td><p> pfsc</p></td>
-         <td><p> The proxy finish status code; specifies whether the Traffic Server request to the origin server was successfully completed (FIN) or interrupted (INTR).</p></td>
-       </tr>
-       <tr>
-         <td><p> phn</p></td>
-         <td><p> The hostname of the Traffic Server that generated the log entry in collated log files.</p></td>
-       </tr>
-       <tr>
-         <td><p> phr</p></td>
-         <td><p> The proxy hierarchy route; the route that Traffic Server used to retrieve the object.</p></td>
-       </tr>
-       <tr>
-         <td><p> pqbl</p></td>
-         <td><p> The proxy request transfer length; the body length in the Traffic Server request to the origin server.</p></td>
-       </tr>
-       <tr>
-         <td><p> pqhl</p></td>
-         <td><p> The proxy request header length; the header length in the Traffic Server request to the origin server.</p></td>
-       </tr>
-       <tr>
-         <td><p> pqsi</p></td>
-         <td><p> The proxy request server IP address (0 on cache hits and parent-ip for requests to parent proxies).</p></td>
-       </tr>
-       <tr>
-         <td><p> pqsn</p></td>
-         <td><p> The proxy request server name; the name of the server that fulfilled the request. </p></td>
-       </tr>
-       <tr>
-         <td><p> prcb</p></td>
-         <td><p> The number of proxy response bytes to the client from the cache.</p></td>
-       </tr>
-       <tr>
-         <td><p> prob</p></td>
-         <td><p> The number of proxy response bytes to the client from the origin server.</p></td>
-       </tr>
-       <tr>
-         <td><p> pscl</p></td>
-         <td><p> The length of the Traffic Server response to the client in bytes.</p></td>
-       </tr>
-       <tr>
-         <td><p> psct</p></td>
-         <td><p> The content type of the document from server response header: for example, <code> img</code> /<code> gif</code> .</p></td>
-       </tr>
-       <tr>
-         <td><p> pshl</p></td>
-         <td><p> The header length in the Traffic Server response to the client.</p></td>
-       </tr>
-       <tr>
-         <td><p> psql</p></td>
-         <td><p> The proxy response transfer length in Squid format (includes header and content length).</p></td>
-       </tr>
-       <tr>
-         <td><p> pssc</p></td>
-         <td><p> The HTTP response status code from Traffic Server to the client.</p></td>
-       </tr>
-       <tr>
-         <td><p> shi</p></td>
-         <td><p> The IP address resolved from the DNS name lookup of the host in the request. For hosts with multiple IP addresses, this field records the IP address resolved from that particular DNS lookup. This can be misleading for cached documents; for example, if the first request was a cache miss and came from IP1 for server S and the second request for server S resolved to IP2 but came from the cache, the log entry for the second request will show IP2.</p></td>
-       </tr>
-       <tr>
-         <td><p> shn</p></td>
-         <td><p> The hostname of the origin server.</p></td>
-       </tr>
-       <tr>
-         <td><p> sscl</p></td>
-         <td><p> The response length, in bytes, from origin server to Traffic Server.</p></td>
-       </tr>
-       <tr>
-         <td><p> sshl </p></td>
-         <td><p> The header length in the origin server response to Traffic Server, in bytes.</p></td>
-       </tr>
-       <tr>
-         <td><p> sshv</p></td>
-         <td><p> The server response HTTP version (1.0, 1.1, and so on).</p></td>
-       </tr>
-       <tr>
-         <td><p> sssc</p></td>
-         <td><p> The HTTP response status code from origin server to Traffic Server.</p></td>
-       </tr>
-       <tr>
-         <td><p> ttms</p></td>
-         <td><p> The time Traffic Server spends processing the client request; the number of milliseconds between the time that the client establishes the connection with Traffic Server and the time that Traffic Server sends the last byte of the response back to the client.</p></td>
-       </tr>
-       <tr>
-         <td><p> ttmsf</p></td>
-         <td><p> The time Traffic Server spends processing the client request as a fractional number of seconds; specifies the time in millisecond resolution, but instead of formatting the output as an integer (as with ttms), the display is formatted as a floating-point number representing a fractional number of seconds; for example, if the time is 1500 milliseconds, this field displays 1.5 while the ttms field displays 1500 and the tts field displays 1.</p></td>
-       </tr>
-       <tr>
-         <td><p> tts</p></td>
-         <td><p> The time Traffic Server spends processing the client request; the number of seconds between the time that the client establishes the connection with Traffic Server and the time that Traffic Server sends the last byte of the response back to the client.</p></td>
-       </tr>
-     </table>
-  <h2><a name="63460">Logging Format Cross-Reference</a> </h2>
-  <p>        The following sections illustrate the correspondence between Traffic Server logging fields and standard logging fields for the Squid and Netscape formats. </p>
-     <h3>
-        <a name="67310">Squid Logging Formats</a>     </h3>
-  <p>       The following table lists the Squid logging fields and the corresponding  logging field symbols. </p>
-  <table border="1">
-        <tr>
-          <TH ROWSPAN="1" colspan="1"> <p> Squid</P></TH>
-          <TH ROWSPAN="1" colspan="1"> <p>  Field Symbols</P></TH>
-        </tr>
-        <tr>
-          <td><p> time</P></td>
-          <td><p> cqts</P></td>
-        </tr>
-        <tr>
-          <td><p> elapsed</P></td>
-          <td><p> ttms</P></td>
-        </tr>
-        <tr>
-          <td><p> client</P></td>
-          <td><p> chi</P></td>
-        </tr>
-        <tr>
-          <td><p> action/code </P></td>
-          <td><p> crc/pssc</P></td>
-        </tr>
-        <tr>
-          <td><p> size</P></td>
-          <td><p> psql</P></td>
-        </tr>
-        <tr>
-          <td><p> method</P></td>
-          <td><p> cqhm</P></td>
-        </tr>
-        <tr>
-          <td><p> url</P></td>
-          <td><p> cquc</P></td>
-        </tr>
-        <tr>
-          <td><p> ident</P></td>
-          <td><p> caun</P></td>
-        </tr>
-        <tr>
-          <td><p> hierarchy/from</P></td>
-          <td><p> phr/pqsn</P></td>
-        </tr>
-        <tr>
-          <td><p> content</P></td>
-          <td><p> psct</P></td>
-        </tr>
-      </table>
-     <h3>
-        <a name="68220">Netscape Common Logging Formats</a>      </h3>
-  <p>       The following table lists the Netscape Common logging fields and the corresponding Traffic Server logging field symbols. </p>
-      <table border="1">
-        <tr>
-          <TH ROWSPAN="1" colspan="1"> <p> Netscape Common</P></TH>
-          <TH ROWSPAN="1" colspan="1"> <p>  Field Symbols</P></TH>
-        </tr>
-        <tr>
-          <td><p> host</P></td>
-          <td><p> chi</P></td>
-        </tr>
-        <tr>
-          <td><p> usr</P></td>
-          <td><p> caun</P></td>
-        </tr>
-        <tr>
-          <td><p> [time]</P></td>
-          <td><p> [cqtn]</P></td>
-        </tr>
-        <tr>
-          <td><p> &quot;req&quot;</P></td>
-          <td><p> &quot;cqtx&quot;</P></td>
-        </tr>
-        <tr>
-          <td><p> s1</P></td>
-          <td><p> pssc</P></td>
-        </tr>
-        <tr>
-          <td><p> c1</P></td>
-          <td><p> pscl</P></td>
-        </tr>
-      </table>
-      <h3>
-        <a name="67697">Netscape Extended Logging Formats</a>      </h3>
-  <p>       The following table lists the Netscape Extended logging fields and the corresponding  Traffic Server logging field symbols. </p>
-      <table border="1">
-        <tr>
-          <TH ROWSPAN="1" colspan="1"> <p> Netscape Extended</P></TH>
-          <TH ROWSPAN="1" colspan="1"> <p>  Field Symbols </P></TH>
-        </tr>
-        <tr>
-          <td><p> host</P></td>
-          <td><p> chi</P></td>
-        </tr>
-        <tr>
-          <td><p> usr</P></td>
-          <td><p> caun</P></td>
-        </tr>
-        <tr>
-          <td><p> [time]</P></td>
-          <td><p> [cqtn]</P></td>
-        </tr>
-        <tr>
-          <td><p> &quot;req&quot;</P></td>
-          <td><p> &quot;cqtx&quot;</P></td>
-        </tr>
-        <tr>
-          <td><p> s1</P></td>
-          <td><p> pssc</P></td>
-        </tr>
-        <tr>
-          <td><p> c1</P></td>
-          <td><p> pscl</P></td>
-        </tr>
-        <tr>
-          <td><p> s2</P></td>
-          <td><p> sssc</P></td>
-        </tr>
-        <tr>
-          <td><p> c2</P></td>
-          <td><p> sscl</P></td>
-        </tr>
-        <tr>
-          <td><p> b1</P></td>
-          <td><p> cqbl</P></td>
-        </tr>
-        <tr>
-          <td><p> b2</P></td>
-          <td><p> pqbl</P></td>
-        </tr>
-        <tr>
-          <td><p> h1</P></td>
-          <td><p> cqhl</P></td>
-        </tr>
-        <tr>
-          <td><p> h2</P></td>
-          <td><p> pshl</P></td>
-        </tr>
-        <tr>
-          <td><p> h3</P></td>
-          <td><p> pqhl</P></td>
-        </tr>
-        <tr>
-          <td><p> h4</P></td>
-          <td><p> sshl</P></td>
-        </tr>
-        <tr>
-          <td><p> xt</P></td>
-          <td><p> tts</P></td>
-        </tr>
-      </table>
-      <h3>
-        <a name="63658">Netscape Extended-2 Logging Formats</a>      </h3>
-  <p>       The following table lists the Netscape Extended-2 logging fields and the corresponding  Traffic Server logging field symbols.</p>
-  <table border="1">
-    <tr>
-      <TH ROWSPAN="1" colspan="1"> <p> Netscape Extended-2</P></TH>
-      <TH ROWSPAN="1" colspan="1"> <p>  Field Symbols</P></TH>
-    </tr>
-    <tr>
-      <td><p> host</P></td>
-      <td><p> chi</P></td>
-    </tr>
-    <tr>
-      <td><p> usr</P></td>
-      <td><p> caun</P></td>
-    </tr>
-    <tr>
-      <td><p> [time]</P></td>
-      <td><p> [cqtn]</P></td>
-    </tr>
-    <tr>
-      <td><p> &quot;req&quot;</P></td>
-      <td><p> &quot;cqtx&quot;</P></td>
-    </tr>
-    <tr>
-      <td><p> s1</P></td>
-      <td><p> pssc</P></td>
-    </tr>
-    <tr>
-      <td><p> c1</P></td>
-      <td><p> pscl</P></td>
-    </tr>
-    <tr>
-      <td><p> s2</P></td>
-      <td><p> sssc</P></td>
-    </tr>
-    <tr>
-      <td><p> c2</P></td>
-      <td><p> sscl</P></td>
-    </tr>
-    <tr>
-      <td><p> b1</P></td>
-      <td><p> cqbl</P></td>
-    </tr>
-    <tr>
-      <td><p> b2</P></td>
-      <td><p> pqbl</P></td>
-    </tr>
-    <tr>
-      <td><p> h1</P></td>
-      <td><p> cqhl</P></td>
-    </tr>
-    <tr>
-      <td><p> h2</P></td>
-      <td><p> pshl</P></td>
-    </tr>
-    <tr>
-      <td><p> h3</P></td>
-      <td><p> pqhl</P></td>
-    </tr>
-    <tr>
-      <td><p> h4</P></td>
-      <td><p> sshl</P></td>
-    </tr>
-    <tr>
-      <td><p> xt</P></td>
-      <td><p> tts</P></td>
-    </tr>
-    <tr>
-      <td><p> route</P></td>
-      <td><p> phr</P></td>
-    </tr>
-    <tr>
-      <td><p> pfs</P></td>
-      <td><p> cfsc</P></td>
-    </tr>
-    <tr>
-      <td><p> ss</P></td>
-      <td><p> pfsc</P></td>
-    </tr>
-    <tr>
-      <td><p> crc</P></td>
-      <td><p> crc</P></td>
-    </tr>
-  </table>
-  <p>&nbsp; </p>
-</body>
+<html>
+  <head>
+    <title>Event Logging Formats</title>
+<meta content="text/html; charset=UTF-8" http-equiv="content-type"/>
+<link rel="stylesheet" href="doc.css" type="text/css" media="all" /></head>
+  <body>
+  <h1><a name="31386">Appendix D - Event Logging Formats</a>
+  </h1>
+
+     <p>       This appendix contains the following sections:      </p>
+<ul>
+<li><a href="#66912">Custom Logging Fields</a> provides descriptions of  logging fields.</li>
+<li><a href="#63460">Logging Format Cross-Reference</a> provides cross-references between Trafic Server logging fields and Netscape &amp; Squid logging fields (including Netscape Extended and Extended-2 fields).</li>
+</ul>            
+        
+     <h2>
+     <a name="66912"> Custom Logging Fields</a>     </h2>
+     <p>       The following table describes Traffic Server custom logging fields.  </p>
+     <table border="1">
+       <tr>
+         <th width="99"> <p> %&lt;field symbol&gt;</p></th>
+         <th width="463"> <p> Description</p></th>
+       </tr>
+       <tr>
+         <td><p><code> {HTTP header field name}cqh</code></p></td>
+         <td><p> Logs the information in the requested field of the client request HTTP header; for example, <code> %&lt;{Accept-Language}cqh&gt;</code> logs the <code>Accept-Language: </code>field in client request headers. </p></td>
+       </tr>
+       <tr>
+         <td><p><code> {HTTP header field name}pqh</code></p></td>
+         <td><p> Logs the information in the requested field of the proxy request HTTP header; for example, <code> %&lt;{Authorization}pqh&gt;</code> logs the<code> Authorization:</code> field in proxy request headers. </p></td>
+       </tr>
+       <tr>
+         <td><p><code> {HTTP header field name}psh</code></p></td>
+         <td><p> Logs the information in the requested field of the proxy response HTTP header; for example, <code> %&lt;{Retry-After}psh&gt;</code> logs the <code>Retry-After:</code> field in proxy response headers. </p></td>
+       </tr>
+       <tr>
+         <td><p><code> {HTTP header field name}ssh</code></p></td>
+         <td><p> Logs the information in the requested field of the server response HTTP header; for example, <code> %&lt;{Age}ssh&gt;</code> logs the <code>Age:</code> field in server response headers. </p></td>
+       </tr>
+       <tr>
+         <td><p><code> caun</code></p></td>
+         <td><p> The client authenticated username; result of the RFC931/ident lookup of the client username.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cfsc</code></p></td>
+         <td><p> The client finish status code; specifies whether the client request to Traffic Server was successfully completed (FIN) or interrupted (INTR).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> chi</code></p></td>
+         <td><p> The IP address of the client's host machine.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqbl</code></p></td>
+         <td><p> The client request transfer length; the body length in the client request to Traffic Server in bytes.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqhl</code></p></td>
+         <td><p> The client request header length; the header length in the client request to Traffic Server.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqhm</code></p></td>
+         <td><p> The HTTP method in the client request to Traffic Server: <code>GET</code>, <code>POST</code>, and so on (subset of <code>cqtx</code>).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqhv</code></p></td>
+         <td><p> The client request HTTP version.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqtd</code></p></td>
+         <td><p> The client request timestamp. Specifies the date of the client request in the format yyyy-mm-dd, where yyyy is the 4-digit year, mm is the 2-digit month, and dd is the 2-digit day.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqtn</code></p></td>
+         <td><p> The client request timestamp; date and time of the client's request (in the Netscape timestamp format).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqtq</code></p></td>
+         <td><p> The client request timestamp, with millisecond resolution.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqts</code></p></td>
+         <td><p> The client-request timestamp in Squid format. The time of the client request  since January 1, 1970 UTC. Time is expressed in seconds, with millisecond resolution.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqtt</code></p></td>
+         <td><p> The client request timestamp. The time of the client request in the format hh:mm:ss, where hh is the two-digit hour in 24-hour format, mm is the two-digit minutes value, and ss is the 2-digit seconds value (for example, 16:01:19).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqtx</code></p></td>
+         <td><p> The full HTTP client request text, minus headers; for example, </p>
+             <p> <code> GET http://www.company.com HTTP/1.0</code> </p>
+           <p> In reverse proxy mode, Traffic Server logs the rewritten/mapped URL (according to the rules in the <code> remap.config</code> file), and <em CLASS="Emphasis"> not</em> the pristine/unmapped URL. To configure Traffic Server to log the original, unmapped URL, set the variable <code> <i>proxy.config.url_remap.pristine_host_hdr </i></code> in the <code> records.config</code> file to <code> 1</code> .</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqu</code></p></td>
+         <td><p> The universal resource identifier (URI) of the request from client to Traffic Server (subset of <code> cqtx</code> ).</p>
+             <p> In reverse proxy mode, Traffic Server logs the rewritten/mapped URL (according to the rules in the <code> remap.config</code> file), and <em CLASS="Emphasis"> not </em> the pristine/unmapped URL. To configure Traffic Server to log the original, unmapped URL, set the variable <code> <i>proxy.config.url_remap.pristine_host_hdr </i></code> in the <code> records.config</code> file to <code> 1</code> .</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cquc</code></p></td>
+         <td><p> The client request canonical URL. This differs from <code>cqu</code> in that blanks (and other characters that might not be parsed by log analysis tools) are replaced by escape sequences. The escape sequence is a percentage sign followed by the ASCII code number in hex.</p>
+             <p> In reverse proxy mode, Traffic Server logs the rewritten/mapped URL (according to the rules in the <code> remap.config</code> file), and<em CLASS="Emphasis"> not </em> the pristine/unmapped URL. To configure Traffic Server to log the original (unmapped) URL, set the  <code> <i>proxy.config.url_remap.pristine_host_hdr </i></code> variable in the <code> records.config</code> file to <code> 1</code> .</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqup</code></p></td>
+         <td><p> The client request URL path; specifies the argument portion of the URL (everything after the host). <br />
+         For example, if the URL is <code> http://www.company.com/images/x.gif</code> , then this field displays <code> /images/x.gif</code></p></td>
+       </tr>
+       <tr>
+         <td><p><code> cqus</code></p></td>
+         <td><p> The client request URL scheme.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> cquuc</code></p></td>
+         <td><p> The client request unmapped URL canonical. This field records a URL before it is remapped (reverse proxy mode).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> crc</code></p></td>
+         <td><p> The cache result code; specifies how the cache responded to the request (<code>HIT</code>, <code>MISS</code>, and so on).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> fsiz</code></p></td>
+         <td><p> The size of the file, in bytes, as seen by the origin server. </p></td>
+       </tr>
+       <tr>
+         <td><p><code> pfsc</code></p></td>
+         <td><p> The proxy finish status code; specifies whether the Traffic Server request to the origin server was successfully completed (<code>FIN</code>) or interrupted (<code>INTR</code>).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> phn</code></p></td>
+         <td><p> The hostname of the Traffic Server that generated the log entry in collated log files.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> phr</code></p></td>
+         <td><p> The proxy hierarchy route; the route  Traffic Server used to retrieve the object.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> pqbl</code></p></td>
+         <td><p> The proxy request transfer length; the body length in Traffic Server's request to the origin server.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> pqhl</code></p></td>
+         <td><p> The proxy request header length; the header length in  Traffic Server's request to the origin server.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> pqsi</code></p></td>
+         <td><p> The proxy request server IP address (0 on cache hits and parent-ip for requests to parent proxies).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> pqsn</code></p></td>
+         <td><p> The proxy request server name; the name of the server that fulfilled the request. </p></td>
+       </tr>
+       <tr>
+         <td><p><code> prcb</code></p></td>
+         <td><p> The number of proxy response bytes to the client from the cache.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> prob</code></p></td>
+         <td><p> The number of proxy response bytes to the client from the origin server.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> pscl</code></p></td>
+         <td><p> The length of the Traffic Server response to the client (in bytes).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> psct</code></p></td>
+         <td><p> The content type of the document from server response header: (for example, <code> img</code> /<code> gif</code> ).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> pshl</code></p></td>
+         <td><p> The header length in the Traffic Server response to the client.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> psql</code></p></td>
+         <td><p> The proxy response transfer length in Squid format (includes header and content length).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> pssc</code></p></td>
+         <td><p> The HTTP response status code from Traffic Server to the client.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> shi</code></p></td>
+         <td><p> The IP address resolved from the DNS name lookup of the host in the request. For hosts with multiple IP addresses, this field records the IP address resolved from that particular DNS lookup. <br/>
+           This can be misleading for cached documents. For example: if the first request was a cache miss and came from<code> <b>IP1</b></code> for server <code><b>S</b></code> and the second request for server <code><b>S</b></code> resolved to <code><b>IP2</b></code> but came from the cache, then the log entry for the second request will show <b><code>IP2</code></b>.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> shn</code></p></td>
+         <td><p> The hostname of the origin server.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> sscl</code></p></td>
+         <td><p> The response length (in bytes) from origin server to Traffic Server.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> sshl </code></p></td>
+         <td><p> The header length in the origin server response to Traffic Server (in bytes).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> sshv</code></p></td>
+         <td><p> The server response HTTP version (1.0, 1.1, etc.).</p></td>
+       </tr>
+       <tr>
+         <td><p><code> sssc</code></p></td>
+         <td><p> The HTTP response status code from origin server to Traffic Server.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> ttms</code></p></td>
+         <td><p> The time Traffic Server spends processing the client request; the number of milliseconds between the time  the client establishes the connection with Traffic Server and the time  Traffic Server sends the last byte of the response back to the client.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> ttmsf</code></p></td>
+         <td><p> The time Traffic Server spends processing the client request as a fractional number of seconds. Time is specified in millisecond resolution; however, instead of formatting the output as an integer (as with <code>ttms</code>), the display is formatted as a floating-point number representing a fractional number of seconds.<br/>
+For example: if the time is 1500 milliseconds, then this field displays 1.5 while the <code>ttms</code> field displays 1500 and the <code>tts</code> field displays 1.</p></td>
+       </tr>
+       <tr>
+         <td><p><code> tts</code></p></td>
+         <td><p> The time Traffic Server spends processing the client request; the number of seconds between the time at which the client establishes the connection with Traffic Server and the time at which Traffic Server sends the last byte of the response back to the client.</p></td>
+       </tr>
+     </table>
+  <h2><a name="63460">Logging Format Cross-Reference</a> </h2>
+  <p>        The following sections illustrate the correspondence between Traffic Server logging fields and standard logging fields for the Squid and Netscape formats. </p>
+     <h3>
+        <a name="67310">Squid Logging Formats</a>     </h3>
+  <p>       The following table lists the Squid logging fields and the corresponding  logging field symbols. </p>
+  <table border="1">
+        <tr>
+          <TH ROWSPAN="1" colspan="1"> <p> Squid</P></TH>
+          <TH ROWSPAN="1" colspan="1"> <p>  Field Symbols</P></TH>
+        </tr>
+        <tr>
+          <td><p><code> time</code></P></td>
+          <td><p><code> cqts</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> elapsed</code></P></td>
+          <td><p><code> ttms</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> client</code></P></td>
+          <td><p><code> chi</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> action/code </code></P></td>
+          <td><p><code> crc/pssc</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> size</code></P></td>
+          <td><p><code> psql</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> method</code></P></td>
+          <td><p><code> cqhm</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> url</code></P></td>
+          <td><p><code> cquc</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> ident</code></P></td>
+          <td><p><code> caun</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> hierarchy/from</code></P></td>
+          <td><p><code> phr/pqsn</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> content</code></P></td>
+          <td><p><code> psct</code></P></td>
+        </tr>
+      </table>
+     <h3>
+        <a name="68220">Netscape Common Logging Formats</a>      </h3>
+  <p>       The following table lists the Netscape Common logging fields and the corresponding Traffic Server logging field symbols. </p>
+      <table border="1">
+        <tr>
+          <TH ROWSPAN="1" colspan="1"> <p> Netscape Common</P></TH>
+          <TH ROWSPAN="1" colspan="1"> <p>  Field Symbols</P></TH>
+        </tr>
+        <tr>
+          <td><p><code> host</code></P></td>
+          <td><p><code> chi</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> usr</code></P></td>
+          <td><p><code> caun</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> [time]</code></P></td>
+          <td><p><code> [cqtn]</code></P></td>
+        </tr>
+        <tr>
+          <td><p> <code>&quot;req&quot;</code></P></td>
+          <td><p> <code>&quot;cqtx&quot;</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> s1</code></P></td>
+          <td><p><code> pssc</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> c1</code></P></td>
+          <td><p><code> pscl</code></P></td>
+        </tr>
+      </table>
+      <h3>
+        <a name="67697">Netscape Extended Logging Formats</a>      </h3>
+  <p>       The following table lists the Netscape Extended logging fields and the corresponding  Traffic Server logging field symbols. </p>
+      <table border="1">
+        <tr>
+          <TH ROWSPAN="1" colspan="1"> <p> Netscape Extended</P></TH>
+          <TH ROWSPAN="1" colspan="1"> <p>  Field Symbols </P></TH>
+        </tr>
+        <tr>
+          <td><p><code> host</code></P></td>
+          <td><p><code> chi</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> usr</code></P></td>
+          <td><p><code> caun</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> [time]</code></P></td>
+          <td><p><code> [cqtn]</code></P></td>
+        </tr>
+        <tr>
+          <td><p> <code>&quot;req&quot;</code></P></td>
+          <td><p> <code>&quot;cqtx&quot;</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> s1</code></P></td>
+          <td><p><code> pssc</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> c1</code></P></td>
+          <td><p><code> pscl</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> s2</code></P></td>
+          <td><p><code> sssc</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> c2</code></P></td>
+          <td><p><code> sscl</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> b1</code></P></td>
+          <td><p><code> cqbl</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> b2</code></P></td>
+          <td><p><code> pqbl</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> h1</code></P></td>
+          <td><p><code> cqhl</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> h2</code></P></td>
+          <td><p><code> pshl</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> h3</code></P></td>
+          <td><p><code> pqhl</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> h4</code></P></td>
+          <td><p><code> sshl</code></P></td>
+        </tr>
+        <tr>
+          <td><p><code> xt</code></P></td>
+          <td><p><code> tts</code></P></td>
+        </tr>
+      </table>
+      <h3>
+        <a name="63658">Netscape Extended-2 Logging Formats</a>      </h3>
+  <p>       The following table lists the Netscape Extended-2 logging fields and the corresponding  Traffic Server logging field symbols.</p>
+  <table border="1">
+    <tr>
+      <TH ROWSPAN="1" colspan="1"> <p> Netscape Extended-2</P></TH>
+      <TH ROWSPAN="1" colspan="1"> <p>  Field Symbols</P></TH>
+    </tr>
+    <tr>
+      <td><p><code> host</code></P></td>
+      <td><p><code> chi</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> usr</code></P></td>
+      <td><p><code> caun</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> [time]</code></P></td>
+      <td><p><code> [cqtn]</code></P></td>
+    </tr>
+    <tr>
+      <td><p> <code>&quot;req&quot;</code></P></td>
+      <td><p> <code>&quot;cqtx&quot;</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> s1</code></P></td>
+      <td><p><code> pssc</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> c1</code></P></td>
+      <td><p><code> pscl</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> s2</code></P></td>
+      <td><p><code> sssc</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> c2</code></P></td>
+      <td><p><code> sscl</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> b1</code></P></td>
+      <td><p><code> cqbl</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> b2</code></P></td>
+      <td><p><code> pqbl</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> h1</code></P></td>
+      <td><p><code> cqhl</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> h2</code></P></td>
+      <td><p><code> pshl</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> h3</code></P></td>
+      <td><p><code> pqhl</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> h4</code></P></td>
+      <td><p><code> sshl</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> xt</code></P></td>
+      <td><p><code> tts</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> route</code></P></td>
+      <td><p><code> phr</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> pfs</code></P></td>
+      <td><p><code> cfsc</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> ss</code></P></td>
+      <td><p><code> pfsc</code></P></td>
+    </tr>
+    <tr>
+      <td><p><code> crc</code></P></td>
+      <td><p><code> crc</code></P></td>
+    </tr>
+  </table>
+  <p>&nbsp; </p>
+</body>
 </html>
\ No newline at end of file