Monitor five critical metrics: delivery rate (target >95%), bounce rate (<2%), complaint rate (<0.1%), domain/IP reputation (via Postmaster Tools), and blacklist status. Set up automated alerts for threshold breaches. Check ESP dashboards daily, reputation tools weekly, and run inbox placement tests monthly. Build dashboards that surface problems, not vanity metrics.
Email Infrastructure Monitoring: What to Watch and Alert On
Monitoring Philosophy
Email monitoring serves one purpose: catching problems before they hurt you.
The best monitoring systems:
- Surface anomalies, not vanity metrics
- Alert early enough to act
- Provide context for diagnosis
- Don't create noise (alert fatigue kills responsiveness)
Understanding your email infrastructure architecture is essential for knowing what to monitor and why.
Critical Metrics
Tier 1: Check Daily
| Metric | Healthy | Warning | Critical |
|---|---|---|---|
| Delivery rate | >97% | 95-97% | <95% |
| Hard bounce rate | <0.5% | 0.5-2% | >2% |
| Soft bounce rate | <2% | 2-5% | >5% |
| Complaint rate | <0.05% | 0.05-0.1% | >0.1% |
| Blacklist status | None | 1 minor | Any major |
Tier 2: Check Weekly
| Metric | Healthy | Warning | Critical |
|---|---|---|---|
| Gmail reputation | High | Medium | Low/Bad |
| Microsoft SNDS | Green | Yellow | Red |
| Inbox placement | >85% | 70-85% | <70% |
| Unsubscribe rate | <0.2% | 0.2-0.5% | >0.5% |
| List growth rate | Positive | Flat | Declining |
Tier 3: Check Monthly
| Metric | Purpose |
|---|---|
| Authentication pass rates | Verify SPF/DKIM/DMARC health |
| Inbox vs promotions split | Gmail tab placement |
| Engagement trends | Open/click trajectory |
| List hygiene metrics | Invalid/inactive percentage |
Essential Tools
Free Tier
Google Postmaster Tools
- Domain reputation: High/Medium/Low/Bad
- IP reputation for each sending IP
- Spam rate (complaint percentage)
- Authentication success rates
- Requires domain verification
Microsoft SNDS (Smart Network Data Services)
- IP reputation color coding
- Spam trap hits
- Complaint data
- Requires IP registration
MXToolbox
- Blacklist checking across 100+ lists
- DNS record verification
- Free API for basic automation
Your ESP's Dashboard
- Delivery, bounce, complaint rates
- Per-campaign performance
- Often includes basic alerts
Practitioner note: Google Postmaster Tools is the single most valuable free tool. If Gmail thinks your reputation is "Low," you're going to spam for 40%+ of recipients. Check it weekly at minimum—I've seen reputation tank overnight from a single bad campaign.
Paid Tier
GlockApps ($50-150/month)
- Inbox placement testing
- Spam filter testing
- Authentication checking
- Blacklist monitoring
Validity Everest ($300+/month)
- Enterprise inbox placement
- Competitive monitoring
- Advanced analytics
- Reputation scoring
Mailmonitor / 250ok
- Similar to Everest
- Different pricing models
Alert Configuration
Alert Levels
P1 - Critical (Immediate Response)
- Delivery rate drops >10% from baseline
- Complaint rate exceeds 0.2%
- Listed on Spamhaus SBL
- Gmail reputation drops to "Bad"
- Transactional email failing (ensure stream separation is in place)
P2 - Warning (Same-Day Response)
- Delivery rate drops >5% from baseline
- Complaint rate exceeds 0.1%
- Gmail reputation drops to "Medium" from "High"
- Listed on secondary blacklist
- Bounce rate exceeds 3%
P3 - Monitor (Weekly Review)
- Minor metric fluctuations
- New feedback loop complaints
- Engagement decline
- List growth stalling
Alert Routing
P1 Critical → PagerDuty/SMS → On-call immediately
P2 Warning → Slack #alerts → Team response same day
P3 Monitor → Email digest → Weekly review meeting
Avoiding Alert Fatigue
- Aggregate related alerts: "3 metrics degraded" not three separate alerts
- Set sensible thresholds: Alert on significant changes, not noise
- Auto-resolve: Clear alerts when metrics recover
- Review and tune: Monthly review of alert patterns
Dashboard Design
Executive Dashboard
High-level health indicators:
┌─────────────────────────────────────────────────┐
│ Email Health Score: 94/100 [●●●●●●●●●○] │
├─────────────────────────────────────────────────┤
│ Delivery Rate │ Bounce Rate │ Complaints │
│ 97.2% │ 1.1% │ 0.04% │
│ ↑ 0.3% │ ↓ 0.2% │ → 0.00% │
├─────────────────────────────────────────────────┤
│ Gmail Rep: HIGH │ Blacklists: 0 │ IPs: 4/4 │
└─────────────────────────────────────────────────┘
Operations Dashboard
Detailed metrics for daily operations:
┌─────────────────────────────────────────────────┐
│ Sending Volume (Last 24h) │
│ ████████████████████████░░░░░░ 42,150 / 50,000 │
├─────────────────────────────────────────────────┤
│ Delivery by Provider │
│ Gmail: 96.8% ████████████████████░ │
│ Outlook: 97.2% █████████████████████░ │
│ Yahoo: 95.1% ███████████████████░░ │
│ Other: 98.1% █████████████████████░ │
├─────────────────────────────────────────────────┤
│ IP Pool Status │
│ 192.168.1.1 HIGH [●] Active 12,400 sent │
│ 192.168.1.2 HIGH [●] Active 11,200 sent │
│ 192.168.1.3 MED [!] Warning 9,100 sent │
│ 192.168.1.4 HIGH [●] Active 9,450 sent │
└─────────────────────────────────────────────────┘
Campaign Dashboard
Per-send analysis:
┌─────────────────────────────────────────────────┐
│ Campaign: March Newsletter │
│ Sent: 45,000 │ Delivered: 43,875 │ Rate: 97.5% │
├─────────────────────────────────────────────────┤
│ Bounces: 562 (1.2%) │
│ Hard: 123 │ Soft: 439 │
│ Complaints: 18 (0.04%) │
│ Unsubscribes: 89 (0.2%) │
├─────────────────────────────────────────────────┤
│ Opens: 12,450 (28.4%) Clicks: 1,890 (4.3%) │
└─────────────────────────────────────────────────┘
Building Custom Monitoring
Data Sources
Aggregate data from:
- ESP webhooks (delivery events)
- Google Postmaster API
- Blacklist API checks
- Your MTA logs (if self-hosted)
Tech Stack Options
Simple: Google Sheets + Apps Script
- Pull data via APIs on schedule
- Charts update automatically
- Free, easy to share
Moderate: Grafana + InfluxDB
- Real-time dashboards
- Custom alerts
- Self-hosted or cloud
Enterprise: Dedicated tools
- Validity platform
- Custom-built internal tools
- Integration with existing monitoring
Webhook Processing
Most ESPs send delivery events via webhooks:
{
"event": "bounce",
"email": "[email protected]",
"type": "hard",
"reason": "550 User unknown",
"timestamp": "2026-03-31T10:00:00Z",
"campaign_id": "march_newsletter"
}
Process in real-time:
- Store in database for analysis
- Trigger immediate suppression for hard bounces
- Aggregate for dashboard metrics
- Feed alerting system
Practitioner note: Don't just log webhook data—act on it. Hard bounces should suppress immediately, not batch overnight. Complaints should trigger suppression within minutes. The gap between "event happened" and "action taken" is where list hygiene problems grow.
Monitoring Cadence
Daily (5 minutes)
- Check ESP dashboard for red flags
- Review any alerts from overnight
- Verify scheduled sends completed
Weekly (30 minutes)
- Google Postmaster Tools review
- Microsoft SNDS check
- Blacklist scan
- Trend analysis (week over week)
- Review complaint feedback
Monthly (1-2 hours)
- Inbox placement testing
- Authentication audit
- List hygiene metrics
- Trend review (month over month)
- Alert threshold tuning
Quarterly
- Full deliverability audit
- Tool and vendor review
- Process improvements
- Team training updates
If you need help setting up email monitoring or building custom dashboards for your infrastructure, schedule a consultation.
Sources
- Google Postmaster Tools: Setup Guide
- Microsoft SNDS: Registration
- M3AAWG: Metrics Best Practices
- GlockApps: Features
- Grafana: Email Monitoring Dashboards
v1.0 · March 2026
Frequently Asked Questions
What email metrics should I monitor daily?
Delivery rate, bounce rate (hard and soft), and complaint rate—these change quickly and indicate immediate problems. Also check for any new blacklist appearances. Daily monitoring catches issues before they compound.
What alert thresholds should I set?
Warning alerts: delivery <95%, bounce >2%, complaint >0.08%. Critical alerts: delivery <90%, bounce >5%, complaint >0.15%, any major blacklist. Adjust based on your baseline—alert on changes from normal, not just absolute values.
How do I monitor IP reputation?
Google Postmaster Tools for Gmail reputation (requires domain verification, shows High/Medium/Low/Bad). Microsoft SNDS for Outlook. Your ESP dashboard for aggregate reputation signals. Check weekly minimum, daily during campaign periods.
What tools do I need for email monitoring?
Free essentials: Google Postmaster Tools, Microsoft SNDS, MXToolbox (blacklist checking). Paid upgrades: GlockApps (inbox placement), Validity Everest (enterprise monitoring), custom dashboards (Grafana + your data). Start with free tools.
Should I monitor open rates for deliverability?
Open rates are a proxy for inbox placement, not a direct metric—but declining opens often indicate spam folder issues. Track trend changes rather than absolute numbers. Apple Mail Privacy Protection skews opens, so combine with click data.
Want this handled for you?
Free 30-minute strategy call. Walk away with a plan either way.