Re: PostgreSQL Logging

From: Oliver Elphick <olly(at)lfix(dot)co(dot)uk>
To: pgsql-novice(at)postgresql(dot)org
Subject: Re: PostgreSQL Logging
Date: 2005-12-24 14:27:35
Message-ID: 1135434455.4274.56.camel@linda.lfix.co.uk
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Fri, 2005-12-23 at 10:15 -0500, Mag Gam wrote:
> Is it possible to isolate logging for each individual database?
> For example, lets say I have 3 databases: db1, db2, db3. And I want to
> log db activity (statements, login/logout, etc..) db1, db2, db3 like
> $PGDATA/db1, $PGDATA/db2, $PGDATA/db3, respectively.
>
> Currently everything is logged in $PGDATA/pg_log

I don't think you can do it in PostgreSQL itself.

I suggest this method:

Configure PostgreSQL to log to standard output.

When starting the postmaster, redirect standard output to a named
pipe.

Before you start PostgreSQL, start up a perl script to read the named
pipe and write to appropriate logs.

--
Oliver Elphick olly(at)lfix(dot)co(dot)uk
Isle of Wight http://www.lfix.co.uk/oliver
GPG: 1024D/A54310EA 92C8 39E7 280E 3631 3F0E 1EC0 5664 7A2F A543 10EA
========================================
Do you want to know God? http://www.lfix.co.uk/knowing_god.html

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Mag Gam 2005-12-24 17:40:32 Re: PostgreSQL Logging
Previous Message Lane Van Ingen 2005-12-23 19:59:37 Re: