Re: Finding number of current connections

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Tauren Mills" <tauren(at)servlets(dot)net>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Finding number of current connections
Date: 2001-08-01 04:03:13
Message-ID: 1113.996638593@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Tauren Mills" <tauren(at)servlets(dot)net> writes:
> If there is not a tool to do this, how difficult would it be to build a tool
> to obtain this information? Or is there simply no way to extract this
> information from pgsql?

Coming soon to a 7.2 near you:

regression=# select * from pg_stat_activity;
datid | datname | procpid | usesysid | usename | current_query
--------+------------+---------+----------+----------+---------------------------------
400867 | regression | 29709 | 256 | postgres | select * from pg_stat_activity;
400867 | regression | 452 | 256 | postgres |
(2 rows)

(the second backend doesn't have collect_querystring turned on, so it's
not reporting its current query...)

Hopefully, Jan will get around to writing some documentation about
this before release ;-)

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message hubert depesz lubaczewski 2001-08-01 04:40:17 indexing of INT8 ?
Previous Message Tauren Mills 2001-08-01 02:36:55 Finding number of current connections