summaryrefslogtreecommitdiffstats
path: root/layout.h
AgeCommit message (Collapse)Author
2019-07-08pgindentMark Wong
2019-07-08Revert "watch the database activity or TPS"Mark Wong
This reverts commit cda7c8e8cf19ccbaec9bb9d286b021ea7fbd5228. This functionality is duplicated in pgstat, focus pg_top on process related information.
2019-07-08Revert "monitor the disk I/O of the server"Mark Wong
This reverts commit 81be58eb547b0e14f06ec232d93554e502d40535. This functionality is duplicated in pgstat, focus pg_top on process related information.
2019-07-08Revert "monitor the disk space of the server"Mark Wong
This reverts commit 64a83a341c4d512b795b858f293763c8493622bb. This functionality is duplicated in pgstat, focus pg_top on process related information.
2013-06-10monitor the disk space of the serverMichael Paquier
We first query server to get PGDATA, then use statfs (on Linux) to get some disk space information. Similar to the I/O case, a new generic API for machine/m_* files has been added, and now only Linux is supported.
2013-06-10monitor the disk I/O of the serverMichael Paquier
In this patch only Linux platform is supported by parsing /proc/diskstats to get some disk info. A new generic API adapted to the machine/m_* files has been added.
2013-06-10watch the database activity or TPSMichael Paquier
This implementation is based on data fetched from pg_stat_database. It is then analyzed to obtain some information like the TPS. This patch is generic as it is based only on libpq, so all the platforms can use that.
2007-10-09Ran pgindent to clean up formatting of the code and make it all uniform.Mark Wong
2007-10-04Protect each header file so macros are not redefined.Mark Wong
2007-04-20[svn] Create release 3.6.1William LeFebvre