에러 알림기-v1-데이터베이스 없음
중급
이것은DevOps분야의자동화 워크플로우로, 13개의 노드를 포함합니다.주로 Code, Gmail, Slack, Discord, Telegram 등의 노드를 사용하며. Telegram, Slack, 그리고 다른 통신 도구를 통해 중앙 집중식 오류 모니터링과 알림을 수행합니다.
사전 요구사항
- •Google 계정 및 Gmail API 인증 정보
- •Slack Bot Token 또는 Webhook URL
- •Discord Bot Token 또는 Webhook
- •Telegram Bot Token
사용된 노드 (13)
카테고리
워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
"id": "61Flju0VYVpEMHzD",
"name": "Error_Notifier-v1-no_db",
"nodes": [
{
"id": "06623d7e-80a2-4f7d-86d8-99eb139760a9",
"name": "스티커 노트1",
"type": "n8n-nodes-base.stickyNote",
"position": [
-480,
180
],
"parameters": {
"color": 6,
"width": 660,
"height": 80,
"content": "# ERROR NOTIFIER\n\n"
},
"typeVersion": 1
},
{
"id": "eb9762e3-1c49-4c18-aab0-ce04bb54d3c5",
"name": "오류 트리거",
"type": "n8n-nodes-base.errorTrigger",
"disabled": true,
"position": [
-440,
-120
],
"parameters": {},
"typeVersion": 1
},
{
"id": "9925c654-17de-47c7-83b1-0b062c86be90",
"name": "When Executed by Another Workflow",
"type": "n8n-nodes-base.executeWorkflowTrigger",
"position": [
-440,
300
],
"parameters": {
"inputSource": "passthrough"
},
"typeVersion": 1.1
},
{
"id": "d8ad4b78-3387-44ce-894b-4c4c21863f1c",
"name": "스티커 노트2",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1000,
-220
],
"parameters": {
"width": 440,
"height": 300,
"content": "# How it works\nThis workflow automatically sends notifications when any other workflow fails.\n\nAlgorithm:\n- Create a workflow with \"**ERROR NOTIFIER**\".\n- Copy and paste \"**ERROR ALERTER**\" into your workflows and activate.\n- Add credentials using your preferred channel.\n\nPlease check out my other items on [gumroad](https://boanse.gumroad.com/?section=k_Sn6LcT_dzJFnp5jmsM5A%3D%3D)\nYou might also like something else☺️"
},
"typeVersion": 1
},
{
"id": "e57e084d-b215-4666-964c-01c2b17984c7",
"name": "Execute Bag Alert Workflow",
"type": "n8n-nodes-base.executeWorkflow",
"disabled": true,
"position": [
-220,
-120
],
"parameters": {
"options": {},
"workflowId": {
"__rl": true,
"mode": "list",
"value": "61Flju0VYVpEMHzD",
"cachedResultName": "Error_Notifier-v1-no_db"
},
"workflowInputs": {
"value": {},
"schema": [],
"mappingMode": "defineBelow",
"matchingColumns": [],
"attemptToConvertTypes": false,
"convertFieldsToString": true
}
},
"typeVersion": 1.2
},
{
"id": "51276cbe-9156-4b88-938f-95919c20fd2f",
"name": "Prepare Messages For Notify",
"type": "n8n-nodes-base.code",
"position": [
-220,
300
],
"parameters": {
"jsCode": "// Get data\nconst errorData = $input.first().json;\n\n\n// Get fallback\nconst execution = errorData.execution || {};\nconst workflow = errorData.workflow || {};\nconst error = execution.error || {};\n\n\nconst workflowName = workflow.name || 'Unknown';\n\nconst nodeName = execution?.lastNodeExecuted|| 'Unknown';\nconst errorMessage = error.message || '-';\nconst errorDescription = error?.context?.messageTemplate || 'No description';\nconst timestamp = error.timestamp ? new Date(error.timestamp).toLocaleString('ru-RU') : 'Unknown';\n\nconst executionUrl = execution.url || '#';\nconst executionId = execution.id || 'Unknown';\nconst errorLevel = error.level ? error.level.toUpperCase() : 'UNKNOWN';\n\n\nconst message = \n`🚨 <b>WORKFLOW ERROR (<a href=\"${executionUrl}\">${executionId}</a>)</b>\n\nWorkflow: <code>${workflowName}</code>\nNode: <code>${nodeName}</code>\n\n<b>${errorLevel}:</b>\n${errorMessage}\n${errorDescription}\n\n${timestamp}`;\n\n\nreturn {\n json: {\n message,\n }\n};"
},
"typeVersion": 2
},
{
"id": "a8b62ee0-f379-47e1-b9e0-d76700edd361",
"name": "스티커 노트",
"type": "n8n-nodes-base.stickyNote",
"position": [
-480,
-220
],
"parameters": {
"color": 6,
"width": 440,
"height": 80,
"content": "# ERROR ALERTER"
},
"typeVersion": 1
},
{
"id": "32389017-571e-4efc-bb5d-155426626f01",
"name": "스티커 노트3",
"type": "n8n-nodes-base.stickyNote",
"position": [
-1000,
180
],
"parameters": {
"width": 440,
"height": 240,
"content": "# Setup\n- ## Add Credentials:\n - WhatsApp (OAuth & API)\n - Telegram\n - Gmail\n - Discord\n - Slack"
},
"typeVersion": 1
},
{
"id": "d066e29c-9c77-4089-8560-9736db38754a",
"name": "Send Notify to Gmail",
"type": "n8n-nodes-base.gmail",
"disabled": true,
"position": [
0,
700
],
"webhookId": "52f0cc71-1ad8-4f9a-b07c-bae9be1e217c",
"parameters": {
"sendTo": "@gmail.com",
"message": "={{ $json.message }}",
"options": {},
"subject": "Error Workflow"
},
"credentials": {
"gmailOAuth2": {
"id": "Ixik7dvloMznqRjx",
"name": "Gmail account"
}
},
"typeVersion": 2.1
},
{
"id": "b38ff563-c8c9-408d-a99e-d8c93ba5f309",
"name": "Send Notify to Whatsapp",
"type": "n8n-nodes-base.whatsApp",
"disabled": true,
"position": [
0,
500
],
"webhookId": "fde1b1fc-48dc-4d7b-b48a-c42b36225a43",
"parameters": {
"textBody": "={{ $json.message }}",
"operation": "send",
"additionalFields": {},
"recipientPhoneNumber": "+12345678901"
},
"credentials": {
"whatsAppApi": {
"id": "p1y94W7Y28627PI2",
"name": "WhatsApp account"
}
},
"typeVersion": 1
},
{
"id": "97a95663-5650-423a-a28b-ea18182c0e69",
"name": "Send Notify to Telegram",
"type": "n8n-nodes-base.telegram",
"position": [
0,
300
],
"webhookId": "13c616bf-a3ad-4035-998a-1dfe6021b89f",
"parameters": {
"text": "={{ $json.message }}",
"chatId": "=YOUR_CHAT_ID",
"additionalFields": {
"parse_mode": "HTML"
}
},
"credentials": {
"telegramApi": {
"id": "0iSopCWwssqRXLS1",
"name": "Error acc"
}
},
"typeVersion": 1
},
{
"id": "cfa7d60b-3e58-4ad2-b445-5f918aac8823",
"name": "Send Notify to Discord",
"type": "n8n-nodes-base.discord",
"disabled": true,
"position": [
0,
900
],
"webhookId": "ea0cb122-61d1-4457-9447-34daa40dccdc",
"parameters": {
"content": "={{ $json.message }}",
"options": {},
"authentication": "webhook"
},
"credentials": {
"discordWebhookApi": {
"id": "gD4HHWsmeRgEyl65",
"name": "Discord Webhook account"
}
},
"typeVersion": 2
},
{
"id": "b1505ead-f1f1-4816-816b-e2e70cfabcb3",
"name": "Send Notify to Slack",
"type": "n8n-nodes-base.slack",
"disabled": true,
"position": [
0,
1100
],
"webhookId": "d2b8ce70-e478-4f05-9add-37d859f73dd8",
"parameters": {
"text": "={{ $json.message }}",
"user": {
"__rl": true,
"mode": "list",
"value": ""
},
"select": "user",
"otherOptions": {}
},
"credentials": {
"slackApi": {
"id": "kyf7L2n90PzYIt0V",
"name": "Slack account"
}
},
"typeVersion": 2.3
}
],
"active": false,
"pinData": {},
"settings": {
"executionOrder": "v1"
},
"versionId": "c390d2c8-192b-43eb-9cc7-02d6db4ff67a",
"connections": {
"Error Trigger": {
"main": [
[
{
"node": "e57e084d-b215-4666-964c-01c2b17984c7",
"type": "main",
"index": 0
}
]
]
},
"51276cbe-9156-4b88-938f-95919c20fd2f": {
"main": [
[
{
"node": "d066e29c-9c77-4089-8560-9736db38754a",
"type": "main",
"index": 0
},
{
"node": "b38ff563-c8c9-408d-a99e-d8c93ba5f309",
"type": "main",
"index": 0
},
{
"node": "b1505ead-f1f1-4816-816b-e2e70cfabcb3",
"type": "main",
"index": 0
},
{
"node": "97a95663-5650-423a-a28b-ea18182c0e69",
"type": "main",
"index": 0
},
{
"node": "cfa7d60b-3e58-4ad2-b445-5f918aac8823",
"type": "main",
"index": 0
}
]
]
},
"9925c654-17de-47c7-83b1-0b062c86be90": {
"main": [
[
{
"node": "51276cbe-9156-4b88-938f-95919c20fd2f",
"type": "main",
"index": 0
}
]
]
}
}
}자주 묻는 질문
이 워크플로우를 어떻게 사용하나요?
위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.
이 워크플로우는 어떤 시나리오에 적합한가요?
중급 - 데브옵스
유료인가요?
이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.
관련 워크플로우 추천
귀하의 워크플로우를 GitHub 저장소에 저장
매일 워크플로우 백업을 GitHub에 저장하고 Slack 알림 전송
If
N8n
Set
+
If
N8n
Set
18 노드Andrew
데브옵스
Telegram-n8n-지휘관
Telegram 로봇 명령을 통해 n8n 인스턴스를 원격 제어
If
N8n
Set
+
If
N8n
Set
67 노드Arthur Braghetto
데브옵스
템플릿 - 레코드어 서브 작업 흐름
Supabase와 Log4j2 스타일 레벨을 사용하여 구조화된 로그 시스템을 만들기
Code
Supabase
Error Trigger
+
Code
Supabase
Error Trigger
11 노드Elodie Tasia
데브옵스
Google Drive, Gmail 및 Discord 알림을 사용한 자동화된 워크플로우 백업 시스템
Google Drive, Gmail, Discord 알림을 활용한 자동화 워크플로우 백업 시스템
If
N8n
Set
+
If
N8n
Set
29 노드HoChien Chang
IT 운영
비즈니스 AI 지휘 센터: Google Workspace 모듈화 대리자, 벡터 검색 및 다중 채널 보고
상업 AI 지휘 센터: Google Workspace 모듈화 대리자, 벡터 검색 및 다중 채널 보고
Set
Gmail
Slack
+
Set
Gmail
Slack
80 노드Paul
문서 추출
블로그 h
Perplexity와 Google Trends를 사용하여 SEO 최적화된 WordPress 블로그를 자동으로 만들기
Set
Gmail
Limit
+
Set
Gmail
Limit
49 노드Paul
콘텐츠 제작