← Blog
Operations 9 min read

Alert Fatigue Is Real: How to Set Up Smart Monitoring Notifications

Too many alerts train you to ignore them. A 3am notification for a 200ms blip that resolved itself isn't monitoring — it's noise. Here's how to configure notifications that mean something every time they fire.

Alert fatigue happens when your monitoring system cries wolf too often. The first few false positives are annoying. By the tenth, your phone buzzes and you roll over and go back to sleep — and the next time it buzzes, it might be real. That's a dangerous place to be.

The fix isn't fewer monitors. It's smarter alert configuration. PingBase has several features specifically designed to eliminate noise without sacrificing coverage. Here's how to use them together.


1. Require consecutive failures before alerting

The single most impactful setting in any monitoring tool is the failure threshold — how many consecutive failed checks are required before an alert fires.

A 1-minute check interval with a threshold of 1 means you get alerted on every single hiccup: a slow DNS response, a momentary network blip, a server that took 2 seconds longer than usual to respond. Most of these resolve on the next check. You woke up for nothing.

Threshold Alert after Good for
1 failure1 minutePayment flows, auth endpoints — zero tolerance
2 failures2 minutesMost production services — good default
3 failures3 minutesServices with known flakiness, marketing pages
5 failures5 minutesBackground services, non-critical endpoints

PingBase defaults to 2 consecutive failures. For most services this eliminates transient blips entirely. For critical payment paths where even 1 minute matters, drop it to 1.


2. Use response time thresholds, not just up/down

A binary up/down monitor misses a whole class of real incidents: your service is "up" in the sense that it returns 200, but it's taking 8 seconds to respond. Your users are experiencing this as broken even though your monitor is green.

Response time threshold alerts fire when your service is slow, not just down. The key is setting a threshold that represents actual user-visible degradation — not a normal variation.

How to set it: look at your monitor's response time history over the last 30 days. Find your P95 response time (the value that 95% of checks fall under). Set your slow threshold at 2–3x that value. This way you get alerted on genuine slowdowns without being woken up for normal variance.

Example: how to calibrate a threshold

Normal response time: 180ms average, 320ms P95

Sensible slow threshold: 800ms (2.5× P95)

What this catches: database slowdowns, memory pressure, upstream API latency spikes

What it ignores: routine variance, brief CDN blips


3. Set quiet hours for non-critical monitors

Not every monitor needs to wake you at 3am. Your marketing blog going down at 2am is an annoyance — you can handle it in the morning. Your payment API going down at 2am is an emergency.

PingBase's quiet hours let you configure a time window during which alerts are suppressed for a specific monitor. The monitor keeps running — checks still happen, state is still recorded — but notifications don't fire until quiet hours end.

Good candidates for quiet hours (10pm – 8am local time):

Keep quiet hours off for:


4. Use monitor dependencies to suppress cascade alerts

This is an underused feature that eliminates an entire category of noise. Consider this scenario: your database goes down. Now your API is down. Your checkout is down. Your dashboard is down. You get four separate alerts — but there's really only one incident, and the root cause is the database.

Monitor dependencies let you mark one monitor as a "parent" of others. If the parent is down, child monitor alerts are suppressed. You still see that the child monitors are down in the dashboard, and the data is recorded — but you don't get a separate alert for each cascading failure.

Dependency tree example

Database health check (parent)

→ API /health endpoint (child — suppressed if DB is down)

→ Checkout endpoint (child — suppressed if DB is down)

→ User dashboard (child — suppressed if DB is down)

In PingBase, set up dependencies under the monitor's Advanced settings. Select the parent monitor, and that monitor's downtime will suppress alerts for this one.


5. Route alerts to the right channel for the urgency level

Not all alerts need to go to the same place. A Slack message is easily missed. A phone call is hard to ignore. Match your alert channel to what the incident actually warrants.

Channel Good for Avoid for
Slack / DiscordTeam awareness, non-critical monitors, business hoursAnything requiring immediate overnight response
EmailDocumented record, SSL expiry warnings, weekly reportsReal-time incident response
Webhook → PagerDuty / OpsGenieOn-call rotation, critical production servicesNon-urgent monitors
TelegramPersonal on-call, solo foundersTeam-wide awareness

PingBase lets you configure multiple alert channels per monitor and route differently per channel. A common pattern for solo founders: Slack for awareness, Telegram for urgent overnight alerts, email for SSL expiry warnings.


6. Review and tune regularly

Alert configuration isn't set-and-forget. Every time you get a false positive — an alert that woke you up for nothing — treat it as a signal: what threshold or setting would have suppressed this correctly?

Conversely, if you missed a real incident because you were in quiet hours or had a dependency set up wrong, fix that too. The goal is a calibrated system that you trust completely — so that when the phone buzzes at 3am, you know it's real.

A practical process: once a month, look at the last 30 days of alert history. For each alert, ask: was this actionable? Did I actually do something because of it? If the answer is "I checked, it was already resolved" more than twice for any monitor, that monitor's threshold is too sensitive.

Monitoring that doesn't wake you for false alarms

PingBase includes quiet hours, response time thresholds, monitor dependencies, and multi-region checks to eliminate noise. Free for up to 5 monitors.

Start free →

Related