Traditional monitoring can't reach your internal services. Inbound monitoring flips the script - your apps send heartbeats to us. If we don't hear back, you get alerted. No firewall rules needed.
Most monitoring services work by actively checking your endpoints from the outside. But what about services that can't be reached from the public internet?
Uses outbound HTTPS connections only. If your server can reach the internet, it can send heartbeats to StatusNow.
No firewall rules, no port forwarding, no VPN tunnels. Just add a simple HTTP call to your application.
Perfect for monitoring scheduled tasks. Send a heartbeat after each successful run - if the heartbeat doesn't arrive on schedule, you're alerted.
Monitor devices on cellular networks, behind CGNAT, or in remote locations. Anywhere with internet access works.
# Bash / Cron Job curl -X POST https://statusnow.dev/api/heartbeat/YOUR_UNIQUE_ID # At the end of your backup script: ./backup.sh && curl -X POST https://statusnow.dev/api/heartbeat/YOUR_UNIQUE_ID
// Node.js const axios = require('axios'); // After successful operation await axios.post('https://statusnow.dev/api/heartbeat/YOUR_UNIQUE_ID');
# Python import requests # Send heartbeat after task completion requests.post('https://statusnow.dev/api/heartbeat/YOUR_UNIQUE_ID')
// C# / .NET using var client = new HttpClient(); await client.PostAsync("https://statusnow.dev/api/heartbeat/YOUR_UNIQUE_ID", null);
Monitor backup scripts, data sync jobs, report generators
Backend services not exposed to the internet
Sensors, gateways, edge computing devices
Corporate networks, staging environments
Queue processors, batch jobs, data pipelines
Customer-hosted installations behind firewalls
Most monitoring services assume your applications are publicly accessible. But modern infrastructure often includes:
Inbound monitoring solves all of these. If your code can make an outbound HTTP request, you can monitor it with StatusNow.
No firewall changes. No VPN tunnels. Just add one line of code and start monitoring immediately.
Start monitoring your internal services, cron jobs, and IoT devices with push-based heartbeat monitoring.