MariaDB Audit Plugin - Status Variables
There are a few status variables related to the MariaDB Audit Plugin, once it has been installed. These variables can be displayed using the SHOW STATUS statement like so:
SHOW STATUS LIKE 'server_audit%';
+----------------------------+------------------+
| Variable_name | Value |
+----------------------------+------------------+
| Server_audit_active | ON |
| Server_audit_current_log | server_audit.log |
| Server_audit_last_error | |
| Server_audit_writes_failed | 0 |
+----------------------------+------------------+
Status Variables
Below is a list of all status variables related to the Audit Plugin. These cannot be set: These are not to be confused with system variables, which can be set. See Server Status Variables for a complete list of status variables that can be viewed with the SHOW STATUS statement. See also the Full list of MariaDB options, system and status variables.
Server_audit_active
Server_audit_active
Description: If the auditing is actually working. It gets the ON value when the logging is successfully started. Then it can get the OFF value if the logging was stopped or log records can't be properly stored due to file or syslog errors.
Data Type:
boolean
Server_audit_current_log
Server_audit_current_log
Description: The name of the logfile or the SYSLOG parameters that are in current use.
Data Type:
string
Server_audit_last_error
Server_audit_last_error
Description: If something went wrong with the logging here you can see the message.
Data Type:
string
Server_audit_writes_failed
Server_audit_writes_failed
Description: The number of log records since last logging-start that weren't properly stored because of errors of any kind. The global value can be flushed by FLUSH STATUS.
Data Type:
numeric
Default Value:
0
This page is licensed: CC BY-SA / Gnu FDL
Last updated
Was this helpful?