How to monitor server/hosting downtime?

ShabbySquire

Power Member
Jr. VIP
Joined
Nov 30, 2011
Messages
720
Reaction score
174
Is there either a script/online service that monitors when your server is down/slow? Would be handy to have an email/text message every time it occurs.

If so, which service would you recommend?
 
Not mine, not affiliated, just a share.

Code:
http://mfscripts.com/site-status-script.html
 
Mac OS X or Linux? Got a oneliner for ya ;)
Code:
while (true) ; do curl -s yoursite.com | grep '/html' && echo up || echo down ; sleep 10m ; done
 
Thanks for the recommendations. Most of the paid ones do a free trial, so will take a gander.

@sirgold, you've outshone yourself again! :cool:
 
To monitor servers and downtime, I would recommend using monitoring solutions like SCOM or NAGIOS.
 
pingdom is the best monitor I've come across... you can also set up your own private service...register a few free hosting accounts on different hosts, and run crons that check your site and mail you if something is wrong...I'm sure all the free hosts can't be down at the same time :evil:
 
Back
Top