Audit Logging
Audit log
The audit log uses a standard HarperDB table to track transactions. For each table a user creates, a corresponding table will be created to track transactions against that table.
Audit log is enabled by default. To disable the audit log, set logging.auditLog
to false in the config file, harperdb-config.yaml
. Then restart HarperDB for those changes to take place. Note, the audit is required to be enabled for real-time messaging.
Audit Log Operations
read_audit_log
The read_audit_log
operation is flexible, enabling users to query with many parameters. All operations search on a single table. Filter options include timestamps, usernames, and table hash values. Additional examples found in the HarperDB API documentation.
Search by Timestamp
There are three outcomes using timestamp.
"search_values": []
- All records returned for specified table"search_values": [1660585740558]
- All records after provided timestamp"search_values": [1660585740558, 1760585759710]
- Records "from" and "to" provided timestamp
Search by Username
The above example will return all records whose username
is "admin."
Search by Primary Key
The above example will return all records whose primary key (hash_value
) is 318.
read_audit_log Response
The example that follows provides records of operations performed on a table. One thing of note is that the read_audit_log
operation gives you the original_records
.
delete_audit_logs_before
Just like with transaction logs, you can clean up your audit logs with the delete_audit_logs_before
operation. It will delete audit log data according to the given parameters. The example below will delete records older than the timestamp provided.
Last updated