Information
This filter defines all events to be written to the audit log.
The filter must be configured to log all events, and the binding must be applied to all users, to ensure complete audit log coverage.
Solution
Create Log All Filter:
SELECT audit_log_filter_set_filter('log_all', '{ "filter": { "log": true } }');
Apply to all logins:
SELECT audit_log_filter_set_user('%', 'log_all');
Impact:
Logging all events can result in very large audit files. In the case where the database is extremely active, it may be more appropriate to be more selective when defining audit filters.