From: | "Simon Riggs" <simon(at)2ndquadrant(dot)com> |
---|---|
To: | <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Configurable Additional Stats |
Date: | 2007-06-29 12:10:38 |
Message-ID: | 1183119038.3589.87.camel@silverbirch.site |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
I've got a requirement to produce some additional stats from the server
while it executes. Specifically, I'm looking at table interaction stats
to make it easier to determine replication sets accurately for a given
transaction mix.
On brief discussion, seems like a good approach would be to put in a
user exit/plugin/hook in AtEOXact_PgStat(). That way we don't need to
add more log_* parameters for this and every additional need.
Something like this...
if (stats_hook)
(* stats_hook)(pgStatTabList);
Any objections to sliding this in?
BTW, do we have a section in the docs on what plugin points are now
available?
--
Simon Riggs
EnterpriseDB http://www.enterprisedb.com
From | Date | Subject | |
---|---|---|---|
Next Message | Theo Schlossnagle | 2007-06-29 12:33:43 | Re: [PATCHES] Doc update for pg_start_backup |
Previous Message | Heikki Linnakangas | 2007-06-29 08:25:12 | Re: [PATCHES] Doc update for pg_start_backup |