audit_log_filter_current_size |
- The current size of the audit log filter file. If the log is rotated, the size is reset to 0. |
+ Current size in bytes of the active audit log file. Resets when the log is rotated. |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_current_size'; |
audit_log_filter_direct_writes |
- Identifies when the log_strategy_type = ASYNCHRONOUS and messages bypass the write buffer and are written directly to the log file. |
+ Number of times data was written synchronously while bypassing the write buffer, for example when a record is larger than the buffer under the ASYNCHRONOUS strategy. |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_direct_writes'; |
- audit_log_filter_max_drop_size |
- In the performance logging mode, the size of the largest dropped event. |
+ audit_log_filter_event_max_drop_size |
+ Size in bytes of the largest event dropped when the PERFORMANCE strategy cannot buffer it (buffer full or oversized record with drop-on-full). |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_event_max_drop_size'; |
audit_log_filter_events |
- The number of audit log filter events. |
+ Number of audit events handled by the audit log filter component. |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_events'; |
audit_log_filter_events_filtered |
- The number of filtered audit log filter component events. |
+ Number of audit events that were filtered out (no log line written). |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_events_filtered'; |
audit_log_filter_events_lost |
- If the event is larger than the available audit log filter buffer space, the event is lost. |
+ Number of audit events not written, including PERFORMANCE-mode drops and failures from the log writer. |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_events_lost'; |
audit_log_filter_events_written |
- The number of audit log filter events written. |
+ Number of audit events written to the audit log. |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_events_written'; |
audit_log_filter_total_size |
- The total size of the events written to all audit log filter files. The number increases even when a log is rotated. |
+ Total size in bytes of data written to audit log files; increases even when a log file is rotated. |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_total_size'; |
audit_log_filter_write_waits |
- In the asynchronous logging mode, the number of times an event waited for space in the audit log filter buffer. |
+ Number of times an event waited for space in the audit buffer under the ASYNCHRONOUS strategy. |
+ SHOW GLOBAL STATUS LIKE 'audit_log_filter_write_waits'; |