mod_status.xml revision e8811b6d38f756b325446ded5d96857d13856511
<?xml version="1.0"?>
<!-- $LastChangedRevision$ -->
<!--
Licensed to the Apache Software Foundation (ASF) under one or more
contributor license agreements. See the NOTICE file distributed with
this work for additional information regarding copyright ownership.
The ASF licenses this file to You under the Apache License, Version 2.0
(the "License"); you may not use this file except in compliance with
the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<modulesynopsis metafile="mod_status.xml.meta">
<name>mod_status</name>
<description>Provides information on server activity and
performance</description>
<status>Base</status>
<identifier>status_module</identifier>
<summary>
<p>The Status module allows a server administrator to find out
how well their server is performing. A HTML page is presented
that gives the current server statistics in an easily readable
form. If required this page can be made to automatically
refresh (given a compatible browser). Another page gives a
simple machine-readable list of the current server state.</p>
<p>The details given are:</p>
<ul>
<li>The number of worker serving requests</li>
<li>The number of idle worker</li>
<li>The status of each worker, the number of requests that
worker has performed and the total number of bytes served by
the worker (*)</li>
<li>A total number of accesses and byte count served (*)</li>
has been running for</li>
<li>Averages giving the number of requests per second, the
number of bytes served per second and the average number of
bytes per request (*)</li>
<li>The current percentage CPU used by each worker and in
total by Apache (*)</li>
<li>The current hosts and requests being processed (*)</li>
</ul>
<p>The lines marked "(*)" are only available if
<directive module="mod_status">ExtendedStatus</directive>
is <code>On</code>.</p>
</summary>
<section id="enable">
<title>Enabling Status Support</title>
<p>To enable status reports only for browsers from the example.com
configuration file</p>
<example>
<Location /server-status><br />
SetHandler server-status<br />
<br />
Order Deny,Allow<br />
Deny from all<br />
Allow from .example.com<br />
</Location>
</example>
<p>You can now access server statistics by using a Web browser
to access the page
</section>
<section id="autoupdate">
<title>Automatic Updates</title>
<p>You can get the status page to update itself automatically if
you have a browser that supports "refresh". Access the page
refresh the page every N seconds.</p>
</section>
<section id="machinereadable">
<title>Machine Readable Status File</title>
<p>A machine-readable version of the status file is available by
accessing the page
is useful when automatically run, see the Perl program in the
<code>/support</code> directory of Apache,
<code>log_server_status</code>.</p>
<note>
<strong>It should be noted that if <module>mod_status</module> is
compiled into the server, its handler capability is available
in <em>all</em> configuration files, including
<code>.htaccess</code>). This may have security-related
ramifications for your site.</strong>
</note>
</section>
<directivesynopsis>
<name>ExtendedStatus</name>
<description>Keep track of extended status information for each
request</description>
<syntax>ExtendedStatus On|Off</syntax>
<default>ExtendedStatus Off</default>
<contextlist><context>server config</context></contextlist>
<usage>
<p>This setting applies to the entire server, and cannot be
enabled or disabled on a virtualhost-by-virtualhost basis.
The collection of extended status information can slow down
the server.</p>
</usage>
</directivesynopsis>
<directivesynopsis>
<name>SeeRequestTail</name>
<description>Determine if mod_status displays the first 63 characters
of a request or the last 63, assuming the request itself is greater than
63 chars.</description>
<syntax>SeeRequestTail On|Off</syntax>
<default>SeeRequestTail Off</default>
<contextlist><context>server config</context></contextlist>
<compatibility>SeeRequestTail is only available in Apache 2.2.7 and
later.</compatibility>
<usage>
<p>mod_status with ExtendedStatus On displays the actual request being
handled. For historical purposes, only 63 characters of the request
are actually stored for display purposes. This directive
controls whether the 1st 63 characters are stored (the previous
behavior and the default) or if the last 63 characters are. This
is only applicable, of course, if the length of the request is
64 characters or greater.</p>
</usage>
</directivesynopsis>
</modulesynopsis>