Stub Status#
The module provides access to basic status information
When building from the source code,
this module isn't built by default;
it should be enabled with the
‑‑with‑http_stub_status_module
build option.
In packages and images from our repos,
the module is included in the build. This configuration creates a simple web page with basic status data which may look like as follows: The basic status information will be accessible from the surrounding location. The following status information is provided: The current number of active client connections including Waiting connections. The total number of accepted client connections. The total number of handled connections. Generally, the parameter value is the same as accepts unless some resource limits have been reached (for example, the worker_connections limit). The total number of client requests. The current number of connections where Angie is reading the request header. The current number of connections where Angie is writing the response back to the client. The current number of idle client connections waiting for a request. same as the Active connections value; same as the Reading value; same as the Writing value; same as the Waiting value.Configuration Example#
location = /basic_status {
stub_status;
}
Active connections: 291
server accepts handled requests
16630948 16630948 31070465
Reading: 6 Writing: 179 Waiting: 106
Directives#
stub_status#
Data#
Active connections
#accepts
#handled
#requests
#Reading
#Writing
#Waiting
#Built-in Variables#
$connections_active
#$connections_reading
#$connections_writing
#$connections_waiting
#