-
Suggestion
-
Resolution: Fixed
-
None
It would be really helpful if the audit log was filterable/searchable, especially by issue.
Sometimes we need to look up if a automation rule has run correctly on a specific issue, with the current audit log it is near impossible to find the specific entries.
All the "no action performed" entries are also unhelpful and only clog the audit log.
The most obvious filters would be:
- date
- status
- issue
Workaround
We can filter the audit log running a query in the database, as the query below searching for all rules executed for issue TST-123.
select AIAI."NAME", AI.* from jiradb.dbo."AO_589059_AUDIT_ITEM" AI join jiradb.dbo."AO_589059_AUDIT_ITEM_ASC_ITEM" AIAI on AI."ID" = AIAI."AUDIT_ITEM_ID" where AI."CATEGORY" = 'SUCCESS' and AIAI."NAME" = 'TST-123'
- relates to
-
JIRAAUTOSERVER-260 Ability to search audit logs of Automation rules
- Closed
[JIRAAUTOSERVER-88] Make audit log filterable/searchable
Comment |
[ how is this closed? a workaround was provided. that's all.
Please reopen and make the Audit log filterable / searchable. We have thousands of executions each day, and one cannot go through fifty pages of Audit log, just to find the one bad execution. ] |
Resolution | New: Fixed [ 1 ] | |
Status | Original: Waiting for Release [ 12075 ] | New: Closed [ 6 ] |
Status | Original: In Progress [ 3 ] | New: Waiting for Release [ 12075 ] |
Fix Version/s | New: 7.4.0 [ 97903 ] | |
Fix Version/s | Original: 7.3.6 [ 97816 ] |
Status | Original: Gathering Interest [ 11772 ] | New: In Progress [ 3 ] |
Fix Version/s | New: 7.3.6 [ 97816 ] |
Description |
Original:
It would be really helpful if the audit log was filterable/searchable, *especially by issue*.
Sometimes we need to look up if a automation rule has run correctly on a specific issue, with the current audit log it is near impossible to find the specific entries. All the "no action performed" entries are also unhelpful and only clog the audit log. The most obvious filters would be: * date * status * issue |
New:
It would be really helpful if the audit log was filterable/searchable, *especially by issue*.
Sometimes we need to look up if a automation rule has run correctly on a specific issue, with the current audit log it is near impossible to find the specific entries. All the "no action performed" entries are also unhelpful and only clog the audit log. The most obvious filters would be: * date * status * issue *Workaround* We can filter the audit log running a query in the database, as the query below searching for all rules executed for issue TST-123. {code:SQL} select AIAI."NAME", AI.* from jiradb.dbo."AO_589059_AUDIT_ITEM" AI join jiradb.dbo."AO_589059_AUDIT_ITEM_ASC_ITEM" AIAI on AI."ID" = AIAI."AUDIT_ITEM_ID" where AI."CATEGORY" = 'SUCCESS' and AIAI."NAME" = 'TST-123' {code} |
Link |
New:
This issue relates to |
Attachment | New: Automation for jira audit log.mov [ 394994 ] | |
Attachment | New: Screen Shot 2020-10-19 at 12.39.31 PM.png [ 394995 ] |