Re: Selects query stats? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Selects query stats?
Date
Msg-id 17713.1148411593@sss.pgh.pa.us
Whole thread Raw
In response to Re: Selects query stats?  ("Jim C. Nasby" <jnasby@pervasive.com>)
Responses Re: Selects query stats?
List pgsql-performance
"Jim C. Nasby" <jnasby@pervasive.com> writes:
> On Tue, May 23, 2006 at 11:33:12AM -0700, Dan Gorman wrote:
>> In any other DB (oracle, mysql) I know how many queries (selects) per
>> second the database is executing. How do I get this
>> number out of postgres?

> You can't. You also can't know how many DML statements were executed
> (though you can see how many tuples were inserted/updated/deleted), or
> how many transactions have occured (well, you can hack the last one, but
> it's a bit of a mess).

Hack?  We do count commits and rollbacks (see pg_stat_database); doesn't
seem that hacky to me.

Counting individual statements would add overhead (which the OP already
declared unacceptable) and there are some definitional issues too, like
whether to count statements executed within functions.

            regards, tom lane

pgsql-performance by date:

Previous
From: Dan Gorman
Date:
Subject: Re: Selects query stats?
Next
From: Alvaro Herrera
Date:
Subject: Re: Selects query stats?