If you don't plan to use UAR, then you should run these two command to control the audit queue. Endpoints will need to be setup on order to end audit events.
By default, Enterprise Manager is setup to send audit events from SAM to this queue.
purge queue queue/audit
setprop queue queue/audit maxbytes=2MB, overflowPolicy=discardOld
Token Meanings:
You can set both maxmsgs and maxbytes properties on the same queue. Exceeding either limit causes the server to reject new messages until consumers reduce the
queue size to below these limits.
Topics and queues can specify the overflowPolicy property to change the effect of exceeding the message capacity established by either maxbytes or maxmsgs.
Set the overflowPolicy using the form:
overflowPolicy=default|discardOld|rejectIncoming
For queues, discardOld specifies that, if messages on the queue have exceeded the maxbytes or maxmsgsvalue, the oldest messages are discarded from the queue and
an error is returned to the message producer.