Intelligent Traffic Monitoring
Uptime tells you if your server is on. Traffic monitoring tells you if your business is actually functioning. Alert on sudden drops in expected event volume.
Monitor Business Logic, Not Just Servers
If your database stays up, but your checkout flow breaks, you still have downtime.
Drop in Signups
Alert if you receive 0 new user registrations in the last hour during peak time.
Error Spikes
Get notified if your payment gateway records more than 5 failed transactions in 5 minutes.
Queue Backlogs
Alert if your job processing rate drops below your minimum expected throughput.
Track Events in Real-Time
Send us a ping every time your event occurs, and we'll calculate the rate.
Set Your Threshold
Define a rule: "Alert me if I receive fewer than 10 pings in a 60 minute sliding window."
Instrument Your Code
Add a small webhook call to your important business logic loops or controllers.
success = execute_charge(amount)
if success:
requests.post("https://ping.cronrabbit.com/your-unique-id")
Continuous Evaluation
Our engine constantly evaluates the sliding window of traffic. If it dips below your threshold, alerts fire immediately.
Advanced Querying
Handle complex event patterns with confidence.
Reverse Thresholds (Spikes)
Instead of alerting on drops, invert the logic. "Alert me if I receive MORE than 100 failed login attempts in 5 minutes."
Dynamic Anomaly Detection
Coming soon: Let our ML models learn your daily/weekly traffic patterns and alert on statistical deviations rather than fixed thresholds.
