Re: Limiting line size in Postgres log files

From: Laurenz Albe <laurenz(dot)albe(at)cybertec(dot)at>
To: Priancka Chatz <pc9926(at)gmail(dot)com>, pgsql-admin <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Limiting line size in Postgres log files
Date: 2024-06-26 12:19:33
Message-ID: 8d2afa8680c2c9fbf9e22e272b977c6c2542cb32.camel@cybertec.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Wed, 2024-06-26 at 13:02 +0200, Priancka Chatz wrote:
> Is there a way to set the max size of a line logged in Postgres log?
> Anything beyond a certain size/no-of-character should be logged only till the specified
> size and leave out the rest. I have an instance where the query statements are very long
> (more than 100MB) and I don't need the entire statement to be in my logfile.
> Lets say I need to log any statement only upto 10MB.
> Is this possible? Maybe a workaround?

I don't think that's possible.

If it were not the size of the statement itself, but the number of parameters, you could set
"log_parameter_max_length" so that only a couple of them are displayed, but the statement
itself is logged in its entirety.

You could experiment with syslog logging and set "syslog_split_messages = off".
Syslog will skip logging long lines, but the limit cannot be configured and is
probably shorter than you want.

Yours,
Laurenz Albe

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Ron Johnson 2024-06-26 13:25:30 Re: Limiting line size in Postgres log files
Previous Message Priancka Chatz 2024-06-26 11:02:17 Limiting line size in Postgres log files