Re: [PATCH] SQL function to report log message - Mailing list pgsql-hackers

From Michael Paquier
Subject Re: [PATCH] SQL function to report log message
Date
Msg-id CAB7nPqSS0w_Fxs3hdxKbUj8HYNRLu_NajSKcx=MzP6QCidh-aQ@mail.gmail.com
Whole thread Raw
In response to [PATCH] SQL function to report log message  (dinesh kumar <dineshkumar02@gmail.com>)
Responses Re: [PATCH] SQL function to report log message
List pgsql-hackers
On Mon, Jul 13, 2015 at 4:54 PM, dinesh kumar <dineshkumar02@gmail.com> wrote:
> Would like to discuss on below feature here.
>
> Feature:
>     Having an SQL function, to write messages to log destination.
>
> Justification:
>     As of now, we don't have an SQL function to write custom/application
> messages to log destination. We have "RAISE" clause which is controlled by
> log_ parameters. If we have an SQL function which works irrespective of log
> settings, that would be a good for many log parsers. What i mean is, in DBA
> point of view, if we route all our native OS stats to log files in a proper
> format, then we can have our log reporting tools to give most effective
> reports. Also, Applications can log their own messages to postgres log
> files, which can be monitored by DBAs too.

What's the actual use case for this feature other than it would be
good to have it? A log message is here to give information about the
state of something that happens in backend, but in the case of this
function the event that happens is the content of the function itself.
It also adds a new log level for something that has a unique usage,
which looks like an overkill to me. Btw, you could do something more
advanced with simply an extension if you really want to play with this
area... But I am dubious about what kind of applications would use
that.
-- 
Michael



pgsql-hackers by date:

Previous
From: dinesh kumar
Date:
Subject: [PATCH] SQL function to report log message
Next
From: Michael Paquier
Date:
Subject: Re: TABLESAMPLE patch is really in pretty sad shape