On Mon, Dec 20, 2021 at 12:24:14PM +0530, Daulat wrote: > It means, there is no use of pgaudit if we already have log_statements > enabled? It depends. log_statments, logs *all* statements of the particular type, so if you want to log whether the DBA do any data changes at all and set it to "mod", that means, any other data changes (from the application) will get logged as well. Maybe you can live with just log_statement = ddl, or you can set role-specific log_statement = mod,ddl for the DBA roles (this might not work on a managed Postgres service). If not, pgaudit allows to log much more fine-grained and targetted audit events. Michael