Re: How to print application_name in log_line_prefix (using %a)? - Mailing list pgsql-general

From Chris Angelico
Subject Re: How to print application_name in log_line_prefix (using %a)?
Date
Msg-id CAPTjJmoVcH2DGmw2DPFmad_b8-uH41RV6QW=dwgroxuf=WFh4A@mail.gmail.com
Whole thread Raw
In response to How to print application_name in log_line_prefix (using %a)?  (Tianyin Xu <tixu@cs.ucsd.edu>)
Responses Re: How to print application_name in log_line_prefix (using %a)?  (Tianyin Xu <tixu@cs.ucsd.edu>)
List pgsql-general
On Mon, Oct 29, 2012 at 4:18 PM, Tianyin Xu <tixu@cs.ucsd.edu> wrote:
> However, I have the following configuration settings in postgresql.conf
>
> application_name = 'mypostgres'
> log_line_prefix = '[%a] '
>

I'm not familiar with this usage of setting application_name in
postgresql.conf - usually I set it as part of the database connection.
For example:

//In Pike:
object
db=Sql.Sql("pgsql://USER:PASSWORD@HOST/DATABASE",(["search_path":"SCHEMA,public","application_name":"APPLICATION"]));

//In PHP:
$db=pg_connect('dbname=DATABASE host=HOST user=USER password=PASSWORD');
pg_query($db,"set application_name='APPLICATION'");
pg_query($db,"set search_path to SCHEMA,public");

ChrisA


pgsql-general by date:

Previous
From: Tianyin Xu
Date:
Subject: How to print application_name in log_line_prefix (using %a)?
Next
From: 高健
Date:
Subject: Why PGDLLIMPORT is needed