SMS alerting to respond to error situations faster - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T11:29:05Zhttp://stackoverflow.com/feeds/question/173338http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/173338/sms-alerting-to-respond-to-error-situations-faster2SMS alerting to respond to error situations fasterBemmu2008-10-06T06:30:12Z2008-10-06T07:14:35Z
<p>What is the easiest way to set up an SMS alerting system so that I will receive notification if my server doesn't respond or a GET query doesn't return correct content?</p>
http://stackoverflow.com/questions/173338/sms-alerting-to-respond-to-error-situations-faster/173357#1733570Answer by Svet for SMS alerting to respond to error situations fasterSvet2008-10-06T06:38:07Z2008-10-06T06:50:26Z<p>You can get a service like <a href="http://www.serviceuptime.com/" rel="nofollow">http://www.serviceuptime.com/</a> and the send an email to your-number@a-domain-your-provider-gives They usually have the exact domains for the providers on their respective websites but you could just try @t-mobile.com if your provider is t-mobile for example.</p>
<p>If you want to write your own tool should be pretty straightforward - send GET request if you dont get the expected response send email. You should run it from 2 different locations from 2 different ISPs tho because if there are routing problems and the request doesnt go through you'll get smsed</p>
http://stackoverflow.com/questions/173338/sms-alerting-to-respond-to-error-situations-faster/173360#1733600Answer by Henrik Paul for SMS alerting to respond to error situations fasterHenrik Paul2008-10-06T06:39:34Z2008-10-06T06:39:34Z<p>What you want is an <a href="http://en.wikipedia.org/wiki/SMS_gateway" rel="nofollow">SMS gateway</a>. There are surely some service providers local to you. Unfortunately, they are a bit hard to find. Try asking Google...</p>
http://stackoverflow.com/questions/173338/sms-alerting-to-respond-to-error-situations-faster/173376#1733761Answer by svrist for SMS alerting to respond to error situations fastersvrist2008-10-06T06:43:34Z2008-10-06T06:43:34Z<p>Often I've found that what you need is a SMS modem attached directly to your monitoring server. What if the problem is the network connection?</p>
http://stackoverflow.com/questions/173338/sms-alerting-to-respond-to-error-situations-faster/173377#1733772Answer by mdb for SMS alerting to respond to error situations fastermdb2008-10-06T06:44:15Z2008-10-06T06:51:24Z<p>You can completely outsource the monitoring and alerting, for example by subscribing to <a href="http://pingdom.com/" rel="nofollow">Pingdom</a>. The most basic Pingdom plan will monitor up to 5 services (including using HTTP GETs with optional content pattern matching) and send an SMS after a configurable amount of downtime.</p>
<p>If you want to roll your own solution, the first thing to get right is the monitoring software. Many, many third party solutions exist for this, from the <a href="http://www.nagios.org/" rel="nofollow">free</a> to the <a href="http://welcome.hp.com/country/us/en/prodserv/software.html" rel="nofollow">outrageously expensive</a>. Of course, rolling your own "try a GET and do something if it doesn't work" script is always an option, but as with all software, feature creep may mean that you're just re-implementing existing solutions soon...</p>
<p>For the SMS notification, using an e-mail-to-SMS gateway might work for you, if you're in a territory well-served by such services. Most US providers, for example, provide free gateways, whereas in Europe they tend to be run by third parties and pay-only. As already suggested, Google is your friend here. Also, your monitoring tool may support sending notifications directly using a cellphone/GSM modem attached to the monitoring server.</p>