Block 1 - Hourly Trigger
- Type / Role
- n8n-nodes-base.scheduleTrigger - scheduleTrigger
- Config choices
- Version 1
Error Alert Aggregator – Email and Jira This workflow aggregates error logs arriving from multiple sources, deduplicates identical events within a configurable time window, and sends a single conso...
n8n-nodes-base.scheduletrigger, n8n-nodes-base.httprequest, n8n-nodes-base.if, n8n-nodes-base.code, n8n-nodes-base.splitinbatches, n8n-nodes-base.emailsend, n8n-nodes-base.wait, n8n-nodes-base.jira
This workflow is cataloged by N8N Workflows and links back to its original n8n.io source page by vinci-king-01.
Original n8n.io sourceThis workflow aggregates error logs arriving from multiple sources, deduplicates identical events within a configurable time-window, and sends a single consolidated notification via Email and Jira. It prevents alert fatigue by batching similar errors and guarantees that responsible teams are informed through both channels.
| Setting | Recommended Value | Notes |
|---|---|---|
| Batch window (Wait node) | 10 minutes | Time allowed to collect & deduplicate errors |
| Deduplication key (Code) | error_id or message field |
Choose a unique attribute representing the same incident |
| Email recipients | Security & DevOps distribution list | Use semicolons for multiple addresses |
| Jira project key | SEC |
Project where alert tickets should be filed |
This workflow aggregates error logs arriving from multiple sources, deduplicates identical events within a configurable time-window, and sends a single consolidated notification via Email and Jira. It prevents alert fatigue by batching similar errors and guarantees that responsible teams are informed through both channels.
Setup Time: 15-20 minutes
status === "error").error_id with the field that uniquely identifies an error.// Code Node snippet
// Use error 'stacktrace' + 'service' for uniqueness
const signature = `${item.json.stacktrace}_${item.json.service}`;
if ($workflow.staticData.signatureCache?.includes(signature)) {
// duplicate, skip
return [];
}
$workflow.staticData.signatureCache = [
...( $workflow.staticData.signatureCache || [] ),
signature
];
return item;
// Jira Node settings
// Search for an open ticket with the same summary
// If found, add a comment instead of creating
{
"operation": "comment",
"issueKey": "={{$node['Set'].json['jiraIssueKey']}}",
"comment": "New occurrences: {{$json.errorCount}}"
}
The workflow outputs structured JSON data:
{
"errors": [
{
"id": "ERR123",
"message": "Database timeout",
"count": 5,
"firstSeen": "2024-03-14T10:12:00Z",
"lastSeen": "2024-03-14T10:22:00Z"
}
],
"emailStatus": "success",
"jiraStatus": "issue_created"
}
query parameters to limit payload size.Pro Tips:
This is a community-contributed n8n workflow template provided “as-is.” Thoroughly test in a non-production environment before deploying to production.
This catalog entry is organized from the workflow JSON. The node-level section below shows the executable blocks available for review before importing the template.
| Workflow | Aggregate error alerts and send consolidated reports via Email and Jira |
|---|---|
| Complexity | advanced |
| Nodes | 21 |
| Categories | DevOps |
| Author | vinci-king-01 |
| Published | 25 Jan 2026 |
Use the JSON export at /data/workflows/12989/12989.json as the source template for this automation.
Open n8n, import the downloaded JSON, and review each node before activating the workflow.
Replace placeholder credentials, API keys, webhook URLs, account IDs, and environment-specific values with your own settings.
Run the workflow manually or in a staging workspace, inspect node output, and confirm downstream systems receive the expected data.
Enable the workflow only after testing, then monitor executions, errors, and rate limits during the first production runs.
Review imported nodes carefully before activation. This catalog entry is intended to help you inspect the workflow structure, understand required services, and find related templates faster.
Node names, credentials, schedules, webhook paths, and external service limits may need adjustment for your workspace.
Error Alert Aggregator – Email and Jira This workflow aggregates error logs arriving from multiple sources, deduplicates identical events within a configurable time window, and sends a single conso...
Review the workflow JSON, configure any required credentials in n8n, and test the automation in a safe workspace before using it in production.
Yes. Use the block-by-block analysis and the downloadable JSON to inspect each node, then adjust credentials, prompts, schedules, filters, or destinations for your DevOps use case.