Kaffeeundcode
n8n Flow-Bibliothek
n8n Workflow 01.06.2026

Flow Arbeitsbereich

Website Uptime Monitor

Flow prüfen, Nodes verstehen, JSON importieren und Credentials sauber anpassen.

Workflow Diagramm

auto-generiert
graph LR
    N0(["⚡ 5 Min Interval"])
    N1["🔧 Check URL"]
    N2{"🔀 If Down"}
    N3[["📤 Notify Telegram"]]
    N0 --> N1
    N1 --> N2
    N2 --> N3

    classDef trigger fill:#f59e0b,stroke:#b45309,color:#000
    classDef action fill:#292524,stroke:#44403c,color:#e7e5e4
    classDef logic fill:#1e1b4b,stroke:#4338ca,color:#c7d2fe
    class N0 trigger
    class N1 action
    class N2 logic
    class N3 action

31_Website_Uptime_Monitor.json

{
    "name": "31_Website_Uptime_Monitor",
    "nodes": [
        {
            "parameters": {
                "rule": {
                    "interval": [
                        {
                            "field": "minutes",
                            "minutesInterval": 5
                        }
                    ]
                }
            },
            "name": "5 Min Interval",
            "type": "n8n-nodes-base.schedule",
            "typeVersion": 1,
            "position": [
                250,
                300
            ]
        },
        {
            "parameters": {
                "url": "https://your-website.com",
                "options": {
                    "responseCode": ""
                }
            },
            "name": "Check URL",
            "type": "n8n-nodes-base.httpRequest",
            "typeVersion": 3,
            "position": [
                450,
                300
            ],
            "continueOnFail": true
        },
        {
            "parameters": {
                "conditions": {
                    "number": [
                        {
                            "value1": "={{ $json.statusCode }}",
                            "operation": "notEqual",
                            "value2": 200
                        }
                    ]
                }
            },
            "name": "If Down",
            "type": "n8n-nodes-base.if",
            "typeVersion": 1,
            "position": [
                650,
                300
            ]
        },
        {
            "parameters": {
                "chatId": "YOUR_CHAT_ID",
                "text": "=🔴 **Website Down!**nStatus Code: {{ $json.statusCode }}nTime: {{ $now }}",
                "additionalFields": {
                    "parse_mode": "Markdown"
                }
            },
            "name": "Notify Telegram",
            "type": "n8n-nodes-base.telegram",
            "typeVersion": 1,
            "position": [
                850,
                300
            ],
            "credentials": {
                "telegramApi": {
                    "id": "YOUR_TELEGRAM_ID",
                    "name": "Telegram Account"
                }
            }
        }
    ],
    "connections": {
        "5 Min Interval": {
            "main": [
                [
                    {
                        "node": "Check URL",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "Check URL": {
            "main": [
                [
                    {
                        "node": "If Down",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        },
        "If Down": {
            "main": [
                [
                    {
                        "node": "Notify Telegram",
                        "type": "main",
                        "index": 0
                    }
                ]
            ]
        }
    }
}