how to check the current status of server(up/down) from my rails application . If server become down,and many users are logined, I need to perform some actions.
views:
31answers:
1
A:
ping is really easy in ruby, maybe someone with some more rails experience can give more related info though.
require 'ping'
Ping.pingecho "www.google.com"
=> true
Ping can also take in a timeout default is 5 and a port.
Beanish
2010-07-14 14:30:58