Re: Add pg_stat_kind_info system view
Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
From: Bertrand Drouvot <bertranddrouvot.pg@gmail.com>
To: Michael Paquier <michael@paquier.xyz>
Cc: Tristan Partin <tristan@partin.io>, pgsql-hackers <pgsql-hackers@postgresql.org>
Date: 2026-06-30T07:59:04Z
Lists: pgsql-hackers
Hi, On Tue, Jun 30, 2026 at 03:42:40PM +0900, Michael Paquier wrote: > On Wed, Jun 24, 2026 at 05:31:12AM +0000, Bertrand Drouvot wrote: > > But header in pgstat_internal.h mentions: > > > > " > > * Definitions for the PostgreSQL cumulative statistics system that should > > * only be needed by files implementing statistics support (rather than ones > > * reporting / querying stats). > > > > " > > > > So it looks like that we are breaking this convention here. Maybe add helper > > function(s)? > > Yeah. Pulling pgstat_internal.h in pgstatfuncs.c is not great. The > code acts as a barrier as the internal part and the fields data > retrieved by the functions. A couple of alternatives I can think of: > - Put this new function in a new file under activity, named blankly > pgstat_kind.c. > - Move the necessary stuff out of pgstat_internal.h into a new header, > or just pgstat_kind.h with a !FRONTEND block. > - Use a new wrapper function that copies the data we need into an > intermediate structure. This is just a new pgstat_get_kind_info(). > > Among these two, putting pg_stat_get_kind_info() into a new file feels > much better than splitting the contents of pgstat_internal.h, which is > kind of the central in-core shmem-side facility. I do agree. That said, creating a new file only for one function looks a bit weird (but I can not think of a better option though). Regards, -- Bertrand Drouvot PostgreSQL Contributors Team RDS Open Source Databases Amazon Web Services: https://aws.amazon.com
Commits
Same data as JSON:
GET /api/v1/messages/:b64id/commits
the thread's linked commits as JSON, with link sources.
API reference →
-
Add system view pg_stat_kind_info
- 3b066de6c0a1 master landed
-
Introduce pluggable APIs for Cumulative Statistics
- 7949d9594582 18.0 cited