You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support Postgres-compatible audit logging in YSQL based on pgAudit.
For instance, to enable auditing on a database run:
CREATE EXTENSION IF NOT EXISTS pgaudit;
Then the same configuration options as in regular pgAudit should work.
In YSQL the options are configurable either per cluster using the ysql_pg_conf_csv flag, or per-session using the relevant session variables.
For instance, to enable auditing of DDLs and raising the log level to notice:
Support Postgres-compatible audit logging in YSQL based on pgAudit.
For instance, to enable auditing on a database run:
Then the same configuration options as in regular pgAudit should work.
In YSQL the options are configurable either per cluster using the
ysql_pg_conf_csv
flag, or per-session using the relevant session variables.For instance, to enable auditing of DDLs and raising the log level to notice:
Cluster-level config
Session-level config
The text was updated successfully, but these errors were encountered: