annotate xml/ru/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="Модуль ngx_http_stub_status_module"
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
11 link="/ru/docs/http/ngx_http_stub_status_module.html"
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
12 lang="ru"
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 Модуль <literal>ngx_http_stub_status_module</literal> предоставляет
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
19 доступ к базовой информации о состоянии сервера.
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 По умолчанию этот модуль не собирается, его сборку необходимо
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
24 разрешить с помощью конфигурационного параметра
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
25 <literal>--with-http_stub_status_module</literal>.
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="Пример конфигурации">
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 В данной конфигурации создаётся простая веб-страница
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
40 с основной информацией о состоянии, которая может выглядеть следующим образом:
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="Директивы">
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 Информация о состоянии будет доступна из данного 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 До версии 1.7.5
c9b202d6c426 Documented the new syntax of the "stub_status" directive.
Ruslan Ermilov <ru@nginx.com>
parents: 1274
diff changeset
67 директива требовала наличия произвольного аргумента.
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="Данные">
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 Доступна следующая информация:
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 Текущее число активных клиентских соединений,
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
85 включая <literal>Waiting</literal>-соединения.
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 Суммарное число принятых клиентских соединений.
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 Суммарное число обработанных соединений.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
96 Как правило, значение этого параметра такое же, как <literal>accepts</literal>,
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
97 если не достигнуто какое-нибудь системное ограничение
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
98 (например, лимит
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
99 <link doc="../ngx_core_module.xml" id="worker_connections"/>).
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 Суммарное число клиентских запросов.
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 Текущее число соединений,
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
110 в которых nginx в настоящий момент читает заголовок запроса.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
111 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
112
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
113 <tag-name id="stubstat_writing"><literal>Writing</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
114 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
115 Текущее число соединений,
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
116 в которых nginx в настоящий момент отвечает клиенту.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
117 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
118
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
119 <tag-name id="stubstat_waiting"><literal>Waiting</literal></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
120 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
121 Текущее число бездействующих клиентских соединений в ожидании запроса.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
122 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
123
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
124 </list>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
125 </para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
126
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
127 </section>
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
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
130 <section id="variables" name="Встроенные переменные">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
131
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
132 <para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
133 Модуль <literal>ngx_http_stub_status_module</literal>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
134 поддерживает следующие встроенные переменные (1.3.14):
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
135 <list type="tag">
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
136
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
137 <tag-name
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
138 id="var_connections_active"><var>$connections_active</var></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
139 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
140 то же, что и значение <literal>Active connections</literal>;
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
141 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
142
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
143 <tag-name
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
144 id="var_connections_reading"><var>$connections_reading</var></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
145 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
146 то же, что и значение <literal>Reading</literal>;
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
147 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
148
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
149 <tag-name
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
150 id="var_connections_writing"><var>$connections_writing</var></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
151 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
152 то же, что и значение <literal>Writing</literal>;
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
153 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
154
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
155 <tag-name
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
156 id="var_connections_waiting"><var>$connections_waiting</var></tag-name>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
157 <tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
158 то же, что и значение <literal>Waiting</literal>.
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
159 </tag-desc>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
160
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
161 </list>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
162 </para>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
163
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
164 </section>
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
165
6e34b5716bdb Documented the stub_status module.
Yaroslav Zhuravlev <yar@nginx.com>
parents:
diff changeset
166 </module>