Skip to content

Commit ee0687b

Browse files
committed
FPM Status Page / fixed broken build
* Documentation for the FPM status page and fpm_get_status() * FPM status page: Update date/time format documentation * FPM status page: Add information on openmetrics format (PHP 8.1+) * Fix fpm_get_status referencing file name * Update FPM status page documentation * Move FPM status configuration to section * Improve FPM Status Page formatting and move it under Observability * Improve FPM status CS * 下記コミットにより、日本語版のビルドが壊れたので修正 php/doc-en@fab4ea9
1 parent 3da0cf9 commit ee0687b

File tree

5 files changed

+416
-5
lines changed

5 files changed

+416
-5
lines changed

install/fpm/configuration.xml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 88333c7e4faf04190cf783247b470c7ea8b54196 Maintainer: takagi Status: ready -->
3+
<!-- EN-Revision: fab4ea95f4fe1471be947602d0e9be32fb802265 Maintainer: takagi Status: ready -->
44
<!-- Credits: mumumu -->
55

66
<sect1 xml:id="install.fpm.configuration" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
@@ -486,8 +486,10 @@
486486
</term>
487487
<listitem>
488488
<para>
489-
FPM の情報ページを見るための URI。この値を省略した場合は、どの URI
490-
も情報ページとは見なされません。デフォルト値: なし
489+
<link linkend="fpm.status">FPM の情報ページ</link>
490+
を見るための URI。この値は、スラッシュ (/) で始めなければいけません。
491+
この値を省略した場合は、どの URI も情報ページとは見なされません。
492+
デフォルト値: なし
491493
</para>
492494
</listitem>
493495
</varlistentry>

reference/fpm/book.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 04210d535db52aed64b82572817f059059ddfebc Maintainer: satoruyoshida Status: ready -->
3+
<!-- EN-Revision: fab4ea95f4fe1471be947602d0e9be32fb802265 Maintainer: satoruyoshida Status: ready -->
44
<book xml:id="book.fpm" xmlns="http://docbook.org/ns/docbook">
55
<?phpdoc extension-membership="core" ?>
6-
<title>FastCGI Process Manager</title>
6+
<title>FastCGI Process Manager(FPM)</title>
77

88
<preface xml:id="intro.fpm">
99
&reftitle.intro;
@@ -14,6 +14,7 @@
1414
</preface>
1515

1616
&reference.fpm.setup;
17+
&reference.fpm.observability;
1718
&reference.fpm.reference;
1819

1920
</book>
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- $Revision$ -->
3+
<!-- EN-Revision: fab4ea95f4fe1471be947602d0e9be32fb802265 Maintainer: mumumu Status: ready -->
4+
5+
<refentry xml:id="function.fpm-get-status" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
6+
<refnamediv>
7+
<refname>fpm_get_status</refname>
8+
<refpurpose>現在の FPMプール の状態を返す</refpurpose>
9+
</refnamediv>
10+
11+
<refsect1 role="description">
12+
&reftitle.description;
13+
<methodsynopsis>
14+
<type>array</type><methodname>fpm_get_status</methodname>
15+
<void />
16+
</methodsynopsis>
17+
<para>
18+
この関数は、現在の FPMプール の完全な状態を連想配列で返します。
19+
この関数は、プロセス単位の情報を含んだ、常に完全な状態を返します。
20+
詳細については、
21+
<link linkend="fpm.status">FPM の情報ページ</link>
22+
を参照下さい。
23+
</para>
24+
<para>
25+
この関数は、FPM を使ってスクリプトを実行している場合にだけ定義されることに注意して下さい。
26+
</para>
27+
</refsect1>
28+
29+
<refsect1 role="parameters">
30+
&reftitle.parameters;
31+
&no.function.parameters;
32+
</refsect1>
33+
34+
<refsect1 role="returnvalues">
35+
&reftitle.returnvalues;
36+
<para>
37+
FPMプール の完全な状態を含む連想配列を返します。
38+
</para>
39+
</refsect1>
40+
</refentry>
41+
42+
<!-- Keep this comment at the end of the file
43+
Local variables:
44+
mode: sgml
45+
sgml-omittag:t
46+
sgml-shorttag:t
47+
sgml-minimize-attributes:nil
48+
sgml-always-quote-attributes:t
49+
sgml-indent-step:1
50+
sgml-indent-data:t
51+
indent-tabs-mode:nil
52+
sgml-parent-document:nil
53+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
54+
sgml-exposed-tags:nil
55+
sgml-local-catalogs:nil
56+
sgml-local-ecat-files:nil
57+
End:
58+
vim600: syn=xml fen fdm=syntax fdl=2 si
59+
vim: et tw=78 syn=sgml
60+
vi: ts=1 sw=1
61+
-->

reference/fpm/observability.xml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<!-- $Revision$ -->
3+
<!-- EN-Revision: fab4ea95f4fe1471be947602d0e9be32fb802265 Maintainer: mumumu Status: ready -->
4+
5+
<chapter xml:id="fpm.observability">
6+
<title>オブザーバビリティ(可観測性)</title>
7+
8+
&reference.fpm.status;
9+
10+
</chapter>
11+
12+
<!-- Keep this comment at the end of the file
13+
Local variables:
14+
mode: sgml
15+
sgml-omittag:t
16+
sgml-shorttag:t
17+
sgml-minimize-attributes:nil
18+
sgml-always-quote-attributes:t
19+
sgml-indent-step:1
20+
sgml-indent-data:t
21+
indent-tabs-mode:nil
22+
sgml-parent-document:nil
23+
sgml-default-dtd-file:"~/.phpdoc/manual.ced"
24+
sgml-exposed-tags:nil
25+
sgml-local-catalogs:nil
26+
sgml-local-ecat-files:nil
27+
End:
28+
vim600: syn=xml fen fdm=syntax fdl=2 si
29+
vim: et tw=78 syn=sgml
30+
vi: ts=1 sw=1
31+
-->

0 commit comments

Comments
 (0)