Re: Add session statistics to pg_stat_database
Laurenz Albe <laurenz.albe@cybertec.at>
From: Laurenz Albe <laurenz.albe@cybertec.at>
To: Masahiro Ikeda <ikedamsh@oss.nttdata.com>
Cc: Magnus Hagander <magnus@hagander.net>, Ahsan Hadi
<ahsan.hadi@gmail.com>, Justin Pryzby <pryzby@telsasoft.com>, Soumyadeep
Chakraborty <soumyadeep2007@gmail.com>, PostgreSQL Hackers
<pgsql-hackers@lists.postgresql.org>
Date: 2021-01-07T15:47:05Z
Lists: pgsql-hackers
Attachments
- 0001-Add-session-statistics-to-pg_stat_database.v11.patch (text/x-patch) patch v11-0001
On Fri, 2020-12-25 at 20:28 +0900, Masahiro Ikeda wrote: > As a user, I want this feature to know whether > clients' session activities are as expected. > > I have some comments about the patch. Thanks you for the thorough review! > 1. pg_proc.dat > > The unit of "session time" and so on says "in seconds". > But, is "in milliseconds" right? You are right. Fixed. > 2. monitoring.sgml > > IIUC, "active_time" includes the time executes a fast-path function and > "idle in transaction" includes "idle in transaction(aborted)" time. > > Why don't you reference pg_stat_activity's "state" column and > "active_time" is the total time when the state is "active" and "fast > path"? > "idle in transaction" is as same too. Good idea; I have expanded the documentation like that. > 3. pgstat.h > > The comment of PgStat_MsgConn says "Sent by pgstat_connection". > I thought "pgstat_connection" is a function, but it doesn't exist. > > Is "Sent by the backend" right? The function was renamed and is now called "pgstat_send_connstats". But you are right, I might as well match the surrounding code and write "Sent by the backend". > Although this is a trivial thing, the following row has too many tabs. > > Other structs have only one space. > > // }<tab><tab><tab>Pgstat_MsgConn; Yes, I messed that up during the pgindent run. Fixed. Patch version 11 is attached. Yours, Laurenz Albe
Commits
-
Bump PGSTAT_FILE_FORMAT_ID
- b2f87b46690a 14.0 landed
-
Add pg_stat_database counters for sessions and session time
- 960869da0803 14.0 landed
-
Fix oversight in my patch of yesterday: forgot to ensure that stats would
- 641912b4d17f 8.3.0 cited