PostgreSQL Database configuration ‘log_duration’ should be on¶
Description¶
Enabling log_duration
helps the PostgreSQL Database to Logs the duration of each completed SQL statement
which in turn generates query and error logs. Query and error logs can be used to identify, troubleshoot, and repair configuration errors and sub-optimal performance.
Portal Remediation Steps¶
Navigate to Azure Database for PostgreSQL servers.
Select the PostgreSQL server.
In the left navigation, select Server parameters.
In
log_duration
, select ON.Click Save.
CLI Remediation Steps¶
To enable
log_duration
:
az postgres server configuration set --resource-group <resourceGroupName> --server-name <serverName> --name log_duration --value on