We run a content pipeline that publishes on a schedule. Every scheduled run for a full week finished, reported success, and published nothing at all. There was no alert because there was no failure — the job had done exactly what it was written to do, which was to attempt the work and exit cleanly whether or not the work happened. We found it by looking at the website and noticing the newest post was seven days old.

That is the failure mode worth designing against, and almost nobody does. A broken automation announces itself. A silently idle one does not, and it can sit there for weeks looking healthy on every dashboard you own.

Why 'success' is a much weaker word than it sounds

Most automation tools — schedulers, CI runners, Zapier-style connectors, cron jobs — report on whether the process completed, not on whether it accomplished anything. Those are different questions, and the gap between them is where this failure lives.

A job can complete successfully having done none of the following: found any records to process, obtained a valid credential, reached the API it needed, or written a single row. It ran. It handled the empty case gracefully. It exited zero. Green tick.

Worse, the well-behaved engineering habit of failing gracefully makes this more likely rather than less. Code that catches an error, logs a warning and continues is code that has been explicitly designed not to raise an alarm. That is correct behaviour for a transient blip and completely wrong for a condition that will persist for a week.

The four causes we see most

In every one of these, the status dashboard is green and the output is zero. The status dashboard is not lying — you asked it the wrong question.

Monitor the output, not the run

The fix is a change of subject. Stop asking 'did the job run?' and start asking 'did anything come out the other end, and when?' Concretely:

Green means the process finished. It has never meant the work happened. Monitor the output, and the difference stops mattering.

How much a quiet week costs

Nothing dramatic happens the day an automation goes quiet, which is why it survives so long. The cost accrues instead: a nurture sequence that stops touching a warm list, a publishing schedule that breaks its own cadence, a lead router that stops routing while the forms keep collecting. By the time someone notices, the fix takes ten minutes and the missing weeks cannot be recovered.

If you run any automation your revenue depends on, do this today: pick the one thing that automation is supposed to produce, find where that thing gets recorded, and set an alert for when it stops appearing. It is a small piece of work. It is also the difference between finding out on day one and finding out the way we did — by looking at the website and doing the arithmetic.

Does your business show up when AI answers?

ChatGPT, Claude, Perplexity and Google's AI Overviews are already answering the questions your customers ask. The $49 AI Visibility Scan shows you where you're cited, where you're invisible, and the three changes that move you first — a written report in your inbox within 48 hours. If nothing in it is actionable, you don't pay.

Run the $49 AI Visibility Scan →

Or book a free 30-minute strategy call →

Share this article

X (Twitter) LinkedIn Facebook WhatsApp

Comments

Leave a comment

← Back to all articles