Skip to main content

Percona Audit Log Plugin Jun 2026

Overall, the Percona Audit Log Plugin provides a powerful tool for monitoring and logging database activity, helping to improve security, performance, and compliance.

like root from logging to avoid filling disk with admin activity: percona audit log plugin

-- Exclude SHOW and SET commands SET GLOBAL audit_log_exclude_commands = 'SHOW,SET'; Overall, the Percona Audit Log Plugin provides a

🔁 Filters are additive – if you specify both include_commands and exclude_accounts , both are applied. helping to improve security

-- Not directly queryable, but you can load into a table: CREATE TABLE audit_import (log JSON); LOAD DATA INFILE '/var/log/mysql/audit.log' INTO TABLE audit_import;