From 66b958c7ff2ccccb7173eff1b912836169d97c9e Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Mon, 24 Sep 2012 20:55:17 +0000 Subject: [PATCH] Document new mod_headers params: %l, %i, %b git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1389569 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/mod/mod_headers.xml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/docs/manual/mod/mod_headers.xml b/docs/manual/mod/mod_headers.xml index 620ee5c90f..528e7f2d0d 100644 --- a/docs/manual/mod/mod_headers.xml +++ b/docs/manual/mod/mod_headers.xml @@ -427,6 +427,24 @@ Header merge Cache-Control no-store env=NO_STORE of the request. The value is preceded by D=. The value is measured in microseconds. + %l + The current load averages of the actual server itself. It is + designed to expose the values obtained by getloadavg() + and this represents the current load average, the 5 minute average, and + the 15 minute average. The value is preceded by l= with each + average separated by /. + + + %i + The current idle percentage of httpd (0 to 100) based on available + processes and threads. The value is preceded by i=. + + + %b + The current busy percentage of httpd (0 to 100) based on available + processes and threads. The value is preceded by b=. + + %{VARNAME}e The contents of the environment variable VARNAME. -- 2.40.0