]> granicus.if.org Git - apache/commitdiff
Document new mod_headers params: %l, %i, %b
authorJim Jagielski <jim@apache.org>
Mon, 24 Sep 2012 20:55:17 +0000 (20:55 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 24 Sep 2012 20:55:17 +0000 (20:55 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1389569 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/mod/mod_headers.xml

index 620ee5c90fdddec01cd3236333e155df63dfe504..528e7f2d0d876e1b45e659240a460a320b74bed4 100644 (file)
@@ -427,6 +427,24 @@ Header merge Cache-Control no-store env=NO_STORE
         of the request. The value is preceded by <code>D=</code>.
         The value is measured in microseconds.</td></tr>
 
+    <tr><td><code>%l</code></td>
+        <td>The current load averages of the actual server itself. It is
+        designed to expose the values obtained by <code>getloadavg()</code>
+        and this represents the current load average, the 5 minute average, and
+        the 15 minute average. The value is preceded by <code>l=</code> with each
+        average separated by <code>/</code>.
+        </td></tr>
+
+    <tr><td><code>%i</code></td>
+        <td>The current idle percentage of httpd (0 to 100) based on available
+        processes and threads. The value is preceded by <code>i=</code>.
+        </td></tr>
+
+    <tr><td><code>%b</code></td>
+        <td>The current busy percentage of httpd (0 to 100) based on available
+        processes and threads. The value is preceded by <code>b=</code>.
+        </td></tr>
+
     <tr><td><code>%{VARNAME}e</code></td>
         <td>The contents of the <a href="../env.html">environment
         variable</a> <code>VARNAME</code>.</td></tr>