Information
The audit_backlog_limit parameter determines how auditd records can be held in the auditd backlog. The default setting of 64 may be insufficient to store all audit events during boot.
During boot if audit=1 then the backlog will hold 64 records. If more than 64 records are created during boot, auditd records will be lost and potential malicious activity could go undetected.
Solution
Edit /etc/default/grub and add audit_backlog_limit=<BACKLOG SIZE> to the GRUB_CMDLINE_LINUX= line between the opening and closing double quotes:
Example:
GRUB_CMDLINE_LINUX="quiet audit_backlog_limit=8192"
Note: Other parameters may also be listed
Run the following command to update the grub2 configuration:
# grub2-mkconfig -o /boot/grub2/grub.cfg