从错误工作流访问执行数据
初级
这是一个DevOps领域的自动化工作流,包含 3 个节点。主要使用 N8n, Code, ErrorTrigger 等节点。 从错误工作流访问执行数据
前置要求
- •无特殊前置要求,导入即可使用
使用的节点 (3)
分类
工作流预览
可视化展示节点连接关系,支持缩放和平移
导出工作流
复制以下 JSON 配置到 n8n 导入,即可使用此工作流
{
"meta": {
"instanceId": "84ba6d895254e080ac2b4916d987aa66b000f88d4d919a6b9c76848f9b8a7616",
"templateId": "2349"
},
"nodes": [
{
"id": "d9c81685-d16e-45c0-a1ab-3927ef619568",
"name": "错误触发器",
"type": "n8n-nodes-base.errorTrigger",
"position": [
380,
240
],
"parameters": {},
"typeVersion": 1
},
{
"id": "22089e9b-73ae-4d03-a11b-5f67f9b47fb4",
"name": "提取webhook数据",
"type": "n8n-nodes-base.code",
"position": [
820,
240
],
"parameters": {
"mode": "runOnceForEachItem",
"jsCode": "const webhook_node_names = $json.workflowData.nodes.filter(x => x.type == 'n8n-nodes-base.webhook').map(x => x.name)\n\nconst webhook_data_array = webhook_node_names.map(n => $json.data.resultData.runData[n] ? $json.data.resultData.runData[n][0].data.main[0][0].json : null).filter(x => x != null)\n\nlet webhook_data = null;\nif (webhook_data_array.length > 0) {\n webhook_data = webhook_data_array[0]\n}\n\nreturn {\n 'webhook_node_names': webhook_node_names,\n 'webook_node_payload': webhook_data\n}"
},
"typeVersion": 2
},
{
"id": "b7fb5443-3faf-4e59-b464-4d3ca131a84f",
"name": "获取执行数据",
"type": "n8n-nodes-base.n8n",
"position": [
600,
240
],
"parameters": {
"options": {
"activeWorkflows": true
},
"resource": "execution",
"operation": "get",
"executionId": "={{ $json.execution.id }}",
"requestOptions": {}
},
"credentials": {
"n8nApi": {
"id": "eGEre3g3El08ZItb",
"name": "n8n account"
}
},
"typeVersion": 1
}
],
"pinData": {},
"connections": {
"Error Trigger": {
"main": [
[
{
"node": "Get execution data",
"type": "main",
"index": 0
}
]
]
},
"Get execution data": {
"main": [
[
{
"node": "Extract webhook data",
"type": "main",
"index": 0
}
]
]
}
}
}常见问题
如何使用这个工作流?
复制上方的 JSON 配置代码,在您的 n8n 实例中创建新工作流并选择「从 JSON 导入」,粘贴配置后根据需要修改凭证设置即可。
这个工作流适合什么场景?
初级 - 开发运维
需要付费吗?
本工作流完全免费,您可以直接导入使用。但请注意,工作流中使用的第三方服务(如 OpenAI API)可能需要您自行付费。
相关工作流推荐
AIAutomationPro 高级错误处理与邮件通知 v1
集中式n8n错误管理系统,通过Gmail自动发送邮件警报
If
N8n
Set
+6
16 节点Daniel Ng
工程
Telegram-n8n-指挥官
通过 Telegram 机器人命令远程控制 n8n 实例
If
N8n
Set
+11
67 节点Arthur Braghetto
开发运维
备份n8n工作流到OneDrive
自动备份n8n工作流到OneDrive,包含清理和邮件通知功能
N8n
Code
Merge
+7
29 节点Wessel Bulte
开发运维
n8n 工作流自动每日备份至 GitLab 仓库
n8n 工作流自动每日备份至 GitLab 仓库
N8n
Set
Code
+6
19 节点Akhil Varma Gadiraju
工程
自动化执行清理系统
使用n8n API和自定义保留规则的自动化执行清理系统
N8n
Set
Code
+2
12 节点Arlin Perez
开发运维
将n8n执行失败警报发送到Slack频道
每小时n8n错误监控与Slack通知
N8n
Set
Code
+5
10 节点Matheus Pedrosa
开发运维