Skip to content

Commit d164e15

Browse files
authored
Exclude SYSTEM audit db from generic audit.query (#15404)
The SYSTEM audit database records a large number of events since it's being fed by auditd. This means we probably don't want to overload users with its results in our UI.
1 parent 97e2773 commit d164e15

File tree

1 file changed

+1
-1
lines changed
  • src/middlewared/middlewared/plugins/audit

1 file changed

+1
-1
lines changed

src/middlewared/middlewared/plugins/audit/audit.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040

4141
ALL_AUDITED = [svc[0] for svc in AUDITED_SERVICES]
42-
BULK_AUDIT = ['SMB']
42+
BULK_AUDIT = ['SMB', 'SYSTEM']
4343
NON_BULK_AUDIT = [svc for svc in ALL_AUDITED if svc not in BULK_AUDIT]
4444

4545
# We set the refquota limit

0 commit comments

Comments
 (0)