diff options
-rw-r--r-- | doc/src/sgml/monitoring.sgml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/src/sgml/monitoring.sgml b/doc/src/sgml/monitoring.sgml index cb912f60f7d..5da26de30a0 100644 --- a/doc/src/sgml/monitoring.sgml +++ b/doc/src/sgml/monitoring.sgml @@ -4609,6 +4609,34 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i <row> <entry role="func_table_entry"><para role="func_signature"> <indexterm> + <primary>pg_stat_get_xact_blocks_fetched</primary> + </indexterm> + <function>pg_stat_get_xact_blocks_fetched</function> ( <type>oid</type> ) + <returnvalue>bigint</returnvalue> + </para> + <para> + Returns the number of buffers fetched for table or index, in the current + transaction. + </para></entry> + </row> + + <row> + <entry role="func_table_entry"><para role="func_signature"> + <indexterm> + <primary>pg_stat_get_xact_blocks_hit</primary> + </indexterm> + <function>pg_stat_get_xact_blocks_hit</function> ( <type>oid</type> ) + <returnvalue>bigint</returnvalue> + </para> + <para> + Returns the number of buffer hits for table or index, in the current + transaction. + </para></entry> + </row> + + <row> + <entry role="func_table_entry"><para role="func_signature"> + <indexterm> <primary>pg_stat_clear_snapshot</primary> </indexterm> <function>pg_stat_clear_snapshot</function> () |