Re: [INTERFACES] Active users? - Mailing list pgsql-interfaces

From Hannu Krosing
Subject Re: [INTERFACES] Active users?
Date
Msg-id 377B37FC.C7B065A4@trust.ee
Whole thread Raw
In response to Active users?  ("Brendan McKenna" <brendan@w3s.ie>)
List pgsql-interfaces
Brendan McKenna wrote:
> 
> Hi,
> 
>         Is there a reliable way to determine how many (if any) users are
> currently using any given database (or whether or not postgres is currently
> in use) -- short of bringing down the postmaster and restarting it?

You can get the needed info using ps (or top)

The following is in linux (on other systens the flags to ps may differ):

[hannu@kodu hannu]$ ps ax | grep postgres 604  p1 S    0:00 grep postgres 600  ?  S    0:00 /usr/bin/postgres localhost
hannuunidocu idle
 

the 8th field is db name, so you can probably write a short script 
(sh, awk, python, perl, ...) to do the counting.

the fields >8 is current command, so yo can check what your backends are
doing.

---------------------
Hannu


pgsql-interfaces by date:

Previous
From: JT Kirkpatrick
Date:
Subject: RE: [ADMIN] RE: [SQL] float4
Next
From: parisi@alephint.it (Tommaso Parisi)
Date:
Subject: JDBC and Applet on Linux-Apache