Quick checks and examples to help you diagnose outages โ terminal commands, online tools and when to automate monitoring.
Ping tests whether the host responds to network packets. Not all servers allow ICMP.
# Linux / macOS ping -c 4 example.com # Windows (PowerShell) ping -n 4 example.com
Traceroute (tracert on Windows) shows the path packets take. Useful to find network hops causing issues.
# Linux traceroute example.com # macOS (uses traceroute too) traceroute example.com # Windows (Command Prompt / PowerShell) tracert example.com
Use curl to inspect HTTP status codes and headers.
curl -I https://example.com # or follow redirects curl -L -I https://example.com
Doing these checks manually works in a pinch, but it's slow and error-prone. If you run a website, you want automation: periodic checks from multiple locations, alerts to your team, and a public status page so users know what's happening.
Hosted Status Page runs checks for you, shows historical uptime, and notifies your team. You can start for free โ it saves time and keeps your users informed. Perfect for site owners who want reliable monitoring without ops overhead.
Interested? See plans & get started โ or create a free account to try automated checks right away.
Paste your URL and run one of the commands above in your terminal โ or try the quick online check below.