-
Bug
-
Resolution: Fixed
-
High
-
9.4.5, 9.4.6, 9.4.7
-
None
-
9.04
-
2
-
Severity 2 - Major
-
Problem
'Excluded events' option is missing from the audit log page in Jira even with DC license applied.
Environment
Tested in
- JSW 9.4.5, JSW 9.4.7
- JSM 5.4.6
- Chrome and Firefox
Steps to Reproduce
- Navigate to (Settings > System > Audit log)
- Scroll down
Expected Results
Actual Results
- No 'Excluded events' section
Workaround
View and manage 'Excluded Events' using REST API
To view excluded events:
request GET /rest/auditing/1.0/configuration/denylist response body (if no events to exclude) { "actions": [] }
To add excluded events:
request POST /rest/auditing/1.0/configuration/denylist request body (you can have as many items in the list) {"add": ["Audit Log search performed"], "delete": []} response body { "actions": [ "Audit Log search performed" ] }
To delete excluded events:
request POST /rest/auditing/1.0/configuration/denylist request body (you can have as many items in the list) {"add": [], "delete": ["Audit Log search performed"]} response body { "actions": [] }
Notes
- DC license is applied and confirmed based on the options available for coverage (ie. Off, Base, Advanced, Full)
- The 'Excluded events' appears fine in JSW 9.4.4 with the same JSW DC license applied