Prerequisites: Jira Cloud API token and project key. A health endpoint to monitor (or replace with your error source).
Build a DevOps alerting workflow from template #113: poll a health endpoint and automatically create a Jira issue when status is not OK.
What this template does
- Check Status — HTTP GET to health URL.
- Error Detected? — condition on
status != ok. - Create Jira Issue — Bug in project OPS (configurable).
- All OK — log branch when healthy.
Step 1 — Load the template
- Studio → Templates → search
Error to Jira. - Load template #113.
Step 2 — Health check
- Set your API URL in Check Status.
- Add a Cron Schedule trigger upstream if you want periodic polling (template starts at HTTP — wire a schedule or webhook).
Step 3 — Jira
- Configure Base URL, email, API token, project, and issue type.
- Map Summary and Description from HTTP response fields.
Step 4 — Activate
- Dry Run with mock error response JSON.
- Activate and verify issue creation in Jira on real failures.
Related tutorials
- GitHub Issue on Build Failure — CI/CD variant.
- HTTP Request — node reference.