PG_STAT_DATABASE
PG_STAT_DATABASE contains database statistics for each database in openGauss.
Table 1 PG_STAT_DATABASE columns
Number of backends currently connected to this database. This is the only column in this view that returns a value reflecting the current state; all other columns return the accumulated values since the last reset. | ||
Number of transactions in this database that have been committed | ||
Number of transactions in this database that have been rolled back | ||
Number of times disk blocks were found already in the buffer cache, so that a read was not necessary (this only includes hits in the openGauss buffer cache, not the operating system's file system cache). | ||
Number of queries canceled due to database recovery conflicts (conflicts occurring only on the standby server). For details, see PG_STAT_DATABASE_CONFLICTS. | ||
Number of temporary files created by queries in this database. All temporary files are counted, regardless of why the temporary file was created (for example, sorting or hashing), and regardless of the log_temp_files setting. | ||
Total amount of data written to temporary files by queries in this database. All temporary files are counted, regardless of why the temporary file was created, and regardless of the log_temp_files setting. | ||
Time spent reading data file blocks by backends in this database (unit: ms) | ||
Time spent writing into data file blocks by backends in this database (unit: ms) | ||