Information
Session auditing is used when a user's activities are under investigation. To ensure all activity is captured during those periods when session auditing is in use, it must be in operation for the entire time the DBMS is running.
Solution
If EDB Auditing is not enabled, execute the following SQL as enterprisedb:
ALTER SYSTEM SET edb_audit = csv;
SELECT pg_reload_conf();
or
ALTER SYSTEM SET edb_audit = xml;
SELECT pg_reload_conf();
If the edb_audit_statement parameter values is not set to 'all' or if the current setting for this requirement has not been noted and approved by the organization in the system documentation, execute the following SQL as enterprisedb:
ALTER SYSTEM SET edb_audit_statement = 'all';
SELECT pg_reload_conf();
or
Update the system documentation to note the organizationally approved setting and corresponding justification of the setting for this requirement.