Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitac086d4

Browse files
committed
Fix some typos and correct wording in the monitoring docs patch
Thom Brown
1 parentddfc2d9 commitac086d4

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

‎doc/src/sgml/monitoring.sgml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -269,15 +269,15 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
269269

270270
<row>
271271
<entry><structname>pg_stat_database</><indexterm><primary>pg_stat_database</primary></indexterm></entry>
272-
<entry>One row per database, showing databasewide statistics. See
272+
<entry>One row per database, showing database-wide statistics. See
273273
<xref linkend="pg-stat-database-view"> for more details.
274274
</entry>
275275
</row>
276276

277277
<row>
278278
<entry><structname>pg_stat_database_conflicts</><indexterm><primary>pg_stat_database_conflicts</primary></indexterm></entry>
279279
<entry>
280-
One row per database showing databasewide statistics about
280+
One row per database showing database-wide statistics about
281281
query cancels due to conflict with recovery on standby servers.
282282
Will only contain information on standby servers, since
283283
conflicts do not occur on master servers.
@@ -495,7 +495,7 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
495495
queries that use the same underlying statistics access functions as
496496
these standard views do. These functions are listed in <xref
497497
linkend="monitoring-stats-funcs-table">. The per-database access
498-
functions take a database OID as argument to identify which
498+
functions take a database OID asanargument to identify which
499499
database to report on. The per-table and per-index functions take
500500
a table or index OID. The functions for function-call statistics
501501
take a function OID. (Note that only tables, indexes, and functions
@@ -522,9 +522,9 @@ postgres: <replaceable>user</> <replaceable>database</> <replaceable>host</> <re
522522
<row>
523523
<entry>datid</entry>
524524
<entry><type>oid</></entry>
525-
<entry>Theoid of the database the backend is connected to.
525+
<entry>TheOID of the database the backend is connected to.
526526
This value can also be returned by directly calling
527-
the <function>pg_stat_get_backend_dbid</function>.</entry>
527+
the <function>pg_stat_get_backend_dbid</function> function.</entry>
528528
</row>
529529
<row>
530530
<entry>datname</entry>
@@ -836,7 +836,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
836836
<row>
837837
<entry>datid</entry>
838838
<entry><type>oid</></entry>
839-
<entry>Theoid of the database</entry>
839+
<entry>TheOID of the database</entry>
840840
</row>
841841
<row>
842842
<entry>datname</entry>
@@ -855,15 +855,15 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
855855
<row>
856856
<entry>xact_commit</entry>
857857
<entry><type>bigint</></entry>
858-
<entry>The number of transactions in this database thathas committed.
859-
This value can also be returned by directly calling
858+
<entry>The number of transactions in this database thathave been
859+
committed.This value can also be returned by directly calling
860860
the <function>pg_stat_get_db_xact_commit</function> function.</entry>
861861
</row>
862862
<row>
863863
<entry>xact_rollback</entry>
864864
<entry><type>bigint</></entry>
865-
<entry>The number of transactions in this database thathas rolled back.
866-
This value can also be returned by directly calling
865+
<entry>The number of transactions in this database thathave been
866+
rolled back.This value can also be returned by directly calling
867867
the <function>pg_stat_get_db_xact_rollback</function> function.</entry>
868868
</row>
869869
<row>
@@ -974,7 +974,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
974974

975975
<para>
976976
The <structname>pg_stat_database</structname> view will contain one row
977-
for each database in the cluster showing databasewide statistics.
977+
for each database in the cluster showing database-wide statistics.
978978
</para>
979979

980980
<table id="pg-stat-database-conflicts-view" xreflabel="pg_stat_database_conflicts">
@@ -992,7 +992,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
992992
<row>
993993
<entry>datid</entry>
994994
<entry><type>oid</></entry>
995-
<entry>Theoid of the database</entry>
995+
<entry>TheOID of the database</entry>
996996
</row>
997997
<row>
998998
<entry>datname</entry>
@@ -1041,7 +1041,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
10411041

10421042
<para>
10431043
The <structname>pg_stat_database_conflicts</structname> view will contain
1044-
one row per database showing databasewide statistics about
1044+
one row per database showing database-wide statistics about
10451045
query cancels due to conflict with recovery on standby servers.
10461046
Will only contain information on standby servers, since
10471047
conflicts do not occur on master servers.
@@ -1067,7 +1067,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
10671067
<row>
10681068
<entry>usesysid</entry>
10691069
<entry><type>oid</></entry>
1070-
<entry>Theoid of the user logged into this WAL sender process</entry>
1070+
<entry>TheOID of the user logged into this WAL sender process</entry>
10711071
</row>
10721072
<row>
10731073
<entry>usename</entry>
@@ -1102,7 +1102,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
11021102
<entry><type>integer</></entry>
11031103
<entry>
11041104
The remote TCP port that the client is using for communication
1105-
to the, or <symbol>NULL</> if a unix socket is used.
1105+
to the, or <symbol>NULL</> if a unix socket is used.
11061106
</entry>
11071107
</row>
11081108
<row>
@@ -1179,7 +1179,7 @@ SELECT pg_stat_get_backend_pid(s.backendid) AS pid,
11791179
<row>
11801180
<entry>relid</entry>
11811181
<entry><type>oid</></entry>
1182-
<entry>The OID of the table this row</entry>
1182+
<entry>The OID of the table</entry>
11831183
</row>
11841184
<row>
11851185
<entry>schemaname</entry>

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp