← Back to Monitoring GuidesAutomation

When n8n Goes Down: A Survival Guide for Your Team

View as Markdown

You automated a dozen critical processes with n8n — lead routing, invoice generation, Slack notifications, data syncs. For weeks, everything just worked. Then one morning you notice leads aren't reaching your CRM. They haven't for three days. Your self-hosted n8n instance ran out of memory and crashed on Sunday, and since automations fail silently, nobody knew.

What Happens on Your Team

The Automation Engineer

Discovers a workflow hasn't run since the weekend. SSHs into the n8n server — the process is dead, killed by the OOM reaper during a heavy execution. The container is up, the database is fine, but the n8n process itself crashed and didn't restart.

The real cost: Self-hosted n8n has no built-in alerting for its own downtime. When the process dies, every workflow stops — silently. The whole value of automation is that it runs without supervision, which is exactly why nobody is watching when it stops.

What they should have had: An HTTP monitor on the n8n instance URL and its /healthz endpoint. When the process crashes, the health check fails and an alert fires immediately — instead of discovering three days of missed automations after the damage is done.

The Solo Founder / No-Code Builder

Runs their entire ops on n8n — onboarding emails, payment reconciliation, support ticket routing. A server reboot after an OS update didn't bring n8n back up because there was no auto-start configured. Found out when a customer asked why they never got their welcome email.

The real cost: For a non-technical or solo builder, n8n is the invisible engine behind the business. When it stops, customer-facing processes break in ways that damage trust — missing emails, unprocessed orders, dropped leads — and there's no ops team to notice.

What they should have had: External monitoring with instant alerts. A failed health check after the reboot would have triggered a Telegram alert in minutes, prompting a quick manual restart instead of days of broken onboarding.

The Agency / MSP

Manages self-hosted n8n instances for several clients. One client's instance hit a disk-full condition from accumulated execution logs. n8n stopped saving executions and webhook triggers started failing. The client noticed before the agency did.

The real cost: Running n8n for clients means each instance is a separate point of failure with different resource profiles. Disk-full from execution logs is a classic silent n8n failure. Without monitoring, the agency learns about problems from the client — the worst look for a managed service.

What they should have had: One monitor per client instance — the UI URL plus a key production webhook endpoint. When any instance degrades, the agency knows first and can fix it before the client notices, protecting the relationship.

Why Monitor n8n?

When you self-host n8n, your workflows are only as reliable as your n8n instance. If the server goes down, every automation stops silently — no errors, no alerts, just workflows that quietly don't run. The tasks you automated to be hands-off become the tasks failing without anyone noticing.

What to Monitor

your-n8n-instance.comYour n8n editor/UI URL
your-n8n-instance.com/healthzn8n's built-in health endpoint
your-n8n-instance.com/webhook/your-webhook-pathA production webhook endpoint your workflows depend on

What You Should Actually Do

  1. 1Monitor your n8n instance URL and its /healthz endpoint — a running container doesn't mean a running n8n process
  2. 2Monitor a key production webhook endpoint — workflows can fail even when the editor UI loads
  3. 3Configure auto-restart (systemd, Docker restart policy, or your orchestrator) — then monitor to verify it actually recovers
  4. 4Watch for disk-full from execution logs — a common silent n8n failure; set up log pruning and monitor for the symptoms
  5. 5Use an alert channel independent of n8n — don't route your n8n downtime alert through an n8n workflow

n8n's Official Status Page

n8n publishes real-time status at status.n8n.io. Monitoristic doesn't replace this — it complements it. The official page tells you when n8n reports an issue. Your own monitor tells you when your connection is affected, often before the status page updates. You also get push alerts instead of checking a webpage manually.

The entire promise of n8n is automation that runs without you watching it. That's also its biggest risk: when a self-hosted instance goes down, the workflows fail silently and the problems pile up unnoticed. External monitoring is the watchful eye that automation removes — it tells you the moment your automation engine stops, so 'set it and forget it' doesn't become 'set it and never know it broke.'

Related Reading

Skip the panic. Know in 60 seconds.

Start Monitoring n8n →

Plans from $5/month · 14-day money-back guarantee

Frequently Asked Questions

How do I monitor a self-hosted n8n instance? +
Monitor your n8n instance URL and its built-in /healthz endpoint with an external HTTP monitor. Also monitor a key production webhook endpoint your workflows rely on. This catches process crashes, server reboots, and resource issues that stop your automations.
Does n8n alert me when it goes down? +
No. Self-hosted n8n has no built-in alerting for its own availability. If the process crashes or the server reboots without auto-start, your workflows stop silently. External monitoring is the only way to get notified that n8n itself is down.
Can I monitor n8n Cloud too? +
Yes. Monitor your n8n Cloud instance URL and any production webhook endpoints. While n8n Cloud manages the infrastructure, monitoring confirms your specific workflows and webhooks are reachable — and catches issues before they affect your automations.
How is this different from status.n8n.io? +
n8n's status page covers n8n Cloud platform incidents. It says nothing about your self-hosted instance. Process crashes, disk-full conditions, OOM kills, and reboot failures on your own server are specific to your deployment and only external monitoring will catch them.

Monitor Other Services