split-logfile.html.en revision b6e6d2139d50d64fc4bbd01c4f07d7a4accfec8c
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<?xml version="1.0" encoding="ISO-8859-1"?>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"><head><!--
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen This file is generated from xml source: DO NOT EDIT
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen -->
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<title>split-logfile - Split up multi-vhost logfiles - Apache HTTP Server</title>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<link href="/style/css/manual.css" rel="stylesheet" media="all" type="text/css" title="Main stylesheet" />
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<link href="/style/css/manual-loose-100pc.css" rel="alternate stylesheet" media="all" type="text/css" title="No Sidebar - Default font size" />
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<link href="/style/css/manual-print.css" rel="stylesheet" media="print" type="text/css" /><link rel="stylesheet" type="text/css" href="/style/css/prettify.css" />
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<script src="/style/scripts/prettify.js" type="text/javascript">
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen</script>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<link href="/images/favicon.ico" rel="shortcut icon" /></head>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<body id="manual-page" class="no-sidebar"><div id="page-header">
af33a4994ae2ff15bc67d19ff1a7feb906745bf8rbowen<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<p class="apache">Apache HTTP Server Version 2.5</p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<img alt="" src="/images/feather.gif" /></div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<div class="up"><a href="./"><img title="&lt;-" alt="&lt;-" src="/images/left.gif" /></a></div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<div id="path">
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<a href="http://www.apache.org/">Apache</a> &gt; <a href="http://httpd.apache.org/">HTTP Server</a> &gt; <a href="http://httpd.apache.org/docs/">Documentation</a> &gt; <a href="../">Version 2.5</a> &gt; <a href="./">Programs</a></div><div id="page-content"><div id="preamble"><h1>split-logfile - Split up multi-vhost logfiles</h1>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<div class="toplang">
b6e6d2139d50d64fc4bbd01c4f07d7a4accfec8cnd<p><span>Available Languages: </span><a href="/en/programs/split-logfile.html" title="English">&nbsp;en&nbsp;</a></p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen</div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <p>This perl script will take a combined Web server access log file and
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen break its contents into separate files. It assumes that the first field of
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen each line is the virtual host identity, put there using the "<code>%v</code>"
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen variable in <code class="directive"><a href="/mod/mod_log_config.html#logformat">LogFormat</a></code>.
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen </p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen</div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<div class="top"><a href="#page-header"><img alt="top" src="/images/up.gif" /></a></div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<div class="section">
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<h2><a name="split-logfile" id="split-logfile">Usage</a></h2>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <p>Create a log file with virtual host information in it:</p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
c3f8f8b0ccc14b14fbeda7a971593bbbe989fa5bhumbedooh <pre class="prettyprint lang-config">
c3f8f8b0ccc14b14fbeda7a971593bbbe989fa5bhumbedoohLogFormat "%v %h %l %u %t \"%r\" %&gt;s %b \"%{Referer}i\" \"%{User-agent}i\"" combined_plus_vhost
c3f8f8b0ccc14b14fbeda7a971593bbbe989fa5bhumbedoohCustomLog logs/access_log combined_plus_vhost
c3f8f8b0ccc14b14fbeda7a971593bbbe989fa5bhumbedooh </pre>
c3f8f8b0ccc14b14fbeda7a971593bbbe989fa5bhumbedooh
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <p>Log files will be created, in the directory where you run the
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen script, for each virtual host name that appears in the combined log file.
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen These logfiles will named after the hostname, with a
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <code>.log</code> file extension.</p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <p>The combined log file is read from stdin. Records read will be appended
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen to any existing log files.</p>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen <div class="example"><p><code>split-logfile &lt; access_log</code></p></div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen</div></div>
51b60896224b408a35684bd6ec0fafe5e4abe322rbowen<div class="bottomlang">
b6e6d2139d50d64fc4bbd01c4f07d7a4accfec8cnd<p><span>Available Languages: </span><a href="/en/programs/split-logfile.html" title="English">&nbsp;en&nbsp;</a></p>
727872d18412fc021f03969b8641810d8896820bhumbedooh</div><div class="top"><a href="#page-header"><img src="/images/up.gif" alt="top" /></a></div><div class="section"><h2><a id="comments_section" name="comments_section">Comments</a></h2><div class="warning"><strong>Notice:</strong><br />This is not a Q&amp;A section. Comments placed here should be pointed towards suggestions on improving the documentation or server, and may be removed again by our moderators if they are either implemented or considered invalid/off-topic. Questions on how to manage the Apache HTTP Server should be directed at either our IRC channel, #httpd, on Freenode, or sent to our <a href="http://httpd.apache.org/lists.html">mailing lists</a>.</div>
0d0ba3a410038e179b695446bb149cce6264e0abnd<script type="text/javascript"><!--//--><![CDATA[//><!--
727872d18412fc021f03969b8641810d8896820bhumbedoohvar comments_shortname = 'httpd';
b6e6d2139d50d64fc4bbd01c4f07d7a4accfec8cndvar comments_identifier = 'http://httpd.apache.org/docs/trunk/programs/split-logfile.html';
0d0ba3a410038e179b695446bb149cce6264e0abnd(function(w, d) {
cc7e1025de9ac63bd4db6fe7f71c158b2cf09fe4humbedooh if (w.location.hostname.toLowerCase() == "httpd.apache.org") {
727872d18412fc021f03969b8641810d8896820bhumbedooh d.write('<div id="comments_thread"><\/div>');
0d0ba3a410038e179b695446bb149cce6264e0abnd var s = d.createElement('script');
0d0ba3a410038e179b695446bb149cce6264e0abnd s.type = 'text/javascript';
0d0ba3a410038e179b695446bb149cce6264e0abnd s.async = true;
ac082aefa89416cbdc9a1836eaf3bed9698201c8humbedooh s.src = 'https://comments.apache.org/show_comments.lua?site=' + comments_shortname + '&page=' + comments_identifier;
0d0ba3a410038e179b695446bb149cce6264e0abnd (d.getElementsByTagName('head')[0] || d.getElementsByTagName('body')[0]).appendChild(s);
0d0ba3a410038e179b695446bb149cce6264e0abnd }
0d0ba3a410038e179b695446bb149cce6264e0abnd else {
727872d18412fc021f03969b8641810d8896820bhumbedooh d.write('<div id="comments_thread">Comments are disabled for this page at the moment.<\/div>');
0d0ba3a410038e179b695446bb149cce6264e0abnd }
0d0ba3a410038e179b695446bb149cce6264e0abnd})(window, document);
30471a4650391f57975f60bbb6e4a90be7b284bfhumbedooh//--><!]]></script></div><div id="footer">
07dc96d063d49299da433f84b5c5681da9bbdf68rbowen<p class="apache">Copyright 2014 The Apache Software Foundation.<br />Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.</p>
af33a4994ae2ff15bc67d19ff1a7feb906745bf8rbowen<p class="menu"><a href="/mod/">Modules</a> | <a href="/mod/quickreference.html">Directives</a> | <a href="http://wiki.apache.org/httpd/FAQ">FAQ</a> | <a href="/glossary.html">Glossary</a> | <a href="/sitemap.html">Sitemap</a></p></div><script type="text/javascript"><!--//--><![CDATA[//><!--
0d0ba3a410038e179b695446bb149cce6264e0abndif (typeof(prettyPrint) !== 'undefined') {
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd prettyPrint();
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd}
7fec19672a491661b2fe4b29f685bc7f4efa64d4nd//--><!]]></script>
ea4c99666354f2faaf2926cfd04a3fe6db29bcd3rbowen</body></html>