Skip to content

Latest commit

 

History

History
52 lines (35 loc) · 1.18 KB

troubleshooting.md

File metadata and controls

52 lines (35 loc) · 1.18 KB

Troubleshooting

Bugzilla tickets are not showing up as issues on Jira

As a consumer, you can:

If you have access to the configured Bugzilla account:

Log Explorer Queries Examples

  • All incoming WebHooks:
jsonPayload.Type="request.summary"
jsonPayload.Fields.path="/bugzilla_webhook"
  • All action log entries:
jsonPayload.Type!="request.summary" AND
(
   NOT jsonPayload.Fields.operation:*  --Entries without `operation` field
   OR (jsonPayload.Fields.operation!="handle" AND jsonPayload.Fields.operation!="ignore")
)
  • For bugs whose whiteboard contains a certain string:
jsonPayload.Fields.bug.whiteboard=~"flowstate"
  • For a certain Bug number:
jsonPayload.Fields.bug.id=1780798
  • For a certain Jira project:
jsonPayload.Fields.action.parameters.jira_project_key="MR"