annotate xml/en/docs/http/ngx_http_stub_status_module.xml @ 1275:c9b202d6c426

Documented the new syntax of the "stub_status" directive.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 26 Aug 2014 17:37:03 +0400
parents 794717949a83
children dd190baef1e7
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1260
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
1 <?xml version="1.0"?>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
2
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
3 <!--
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
4 Copyright (C) Yaroslav Zhuravlev
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
5 Copyright (C) Nginx, Inc.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
6 -->
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
7
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
9
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
10 <module name="Module ngx_http_stub_status_module"
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
11 link="/en/docs/http/ngx_http_stub_status_module.html"
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
12 lang="en"
1275
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
13 rev="2">
1260
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
14
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
15 <section id="summary">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
16
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
17 <para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
18 The <literal>ngx_http_stub_status_module</literal> module provides
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
19 access to basic status information.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
20 </para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
21
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
22 <para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
23 This module is not built by default, it should be enabled with the
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
24 <literal>--with-http_stub_status_module</literal>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
25 configuration parameter.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
26 </para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
27
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
28 </section>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
29
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
30
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
31 <section id="example" name="Example Configuration">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
32
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
33 <para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
34 <example>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
35 location /basic_status {
1275
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
36 stub_status;
1260
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
37 }
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
38 </example>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
39 This configuration creates a simple web page
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
40 with basic status data which may look like as follows:
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
41 <example>
1274
794717949a83 Stub status: fixed whitespace in example output.
Ruslan Ermilov <ru@nginx.com>
parents: 1268
diff changeset
42 Active connections: 291
1260
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
43 server accepts handled requests
1274
794717949a83 Stub status: fixed whitespace in example output.
Ruslan Ermilov <ru@nginx.com>
parents: 1268
diff changeset
44 16630948 16630948 31070465
794717949a83 Stub status: fixed whitespace in example output.
Ruslan Ermilov <ru@nginx.com>
parents: 1268
diff changeset
45 Reading: 6 Writing: 179 Waiting: 106
1260
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
46 </example>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
47 </para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
48
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
49 </section>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
50
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
51
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
52 <section id="directives" name="Directives">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
53
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
54 <directive name="stub_status">
1275
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
55 <syntax/>
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
56 <default/>
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
57 <context>server</context>
1260
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
58 <context>location</context>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
59
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
60 <para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
61 The basic status information will be accessible from the surrounding location.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
62 </para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
63
1275
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
64 <para>
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
65 <note>
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
66 In versions prior to 1.7.5,
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
67 the directive required an arbitrary argument.
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
68 </note>
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
69 </para>
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
70
1260
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
71 </directive>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
72
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
73 </section>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
74
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
75
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
76 <section id="data" name="Data">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
77
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
78 <para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
79 The following status information is provided:
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
80 <list type="tag">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
81
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
82 <tag-name id="stubstat_active"><literal>Active connections</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
83 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
84 The current number of active client connections
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
85 including <literal>Waiting</literal> connections.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
86 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
87
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
88 <tag-name id="stubstat_accepts"><literal>accepts</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
89 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
90 The total number of accepted client connections.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
91 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
92
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
93 <tag-name id="stubstat_handled"><literal>handled</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
94 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
95 The total number of handled connections.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
96 Generally, the parameter value is the same as <literal>accepts</literal>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
97 unless some resource limits have been reached
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
98 (for example, the
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
99 <link doc="../ngx_core_module.xml" id="worker_connections"/> limit).
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
100 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
101
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
102 <tag-name id="stubstat_requests"><literal>requests</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
103 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
104 The total number of client requests.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
105 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
106
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
107 <tag-name id="stubstat_reading"><literal>Reading</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
108 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
109 The current number of connections where nginx is reading the request header.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
110 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
111
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
112 <tag-name id="stubstat_writing"><literal>Writing</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
113 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
114 The current number of connections
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
115 where nginx is writing the response back to the client.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
116 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
117
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
118 <tag-name id="stubstat_waiting"><literal>Waiting</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
119 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
120 The current number of idle client connections waiting for a request.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
121 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
122
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
123 </list>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
124 </para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
125
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
126 </section>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
127
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
128
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
129 <section id="variables" name="Embedded Variables">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
130
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
131 <para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
132 The <literal>ngx_http_stub_status_module</literal> module
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
133 supports the following embedded variables (1.3.14):
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
134 <list type="tag">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
135
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
136 <tag-name
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
137 id="var_connections_active"><var>$connections_active</var></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
138 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
139 same as the <literal>Active connections</literal> value;
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
140 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
141
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
142 <tag-name
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
143 id="var_connections_reading"><var>$connections_reading</var></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
144 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
145 same as the <literal>Reading</literal> value;
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
146 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
147
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
148 <tag-name
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
149 id="var_connections_writing"><var>$connections_writing</var></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
150 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
151 same as the <literal>Writing</literal> value;
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
152 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
153
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
154 <tag-name
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
155 id="var_connections_waiting"><var>$connections_waiting</var></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
156 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
157 same as the <literal>Waiting</literal> value.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
158 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
159
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
160 </list>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
161 </para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
162
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
163 </section>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
164
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
165 </module>