As part of a diagnostics page I would like to have the user be able to run a \"ping\", ie an ordinary shell command to send ICMP_ECHO_REQUSTs to a certain IP and display the res
If I understand you correctly, what you want is generally receiving some information from web server in client while client doesn't know when exactly that information is incoming, i.e. pushing information from web server to client. There are a few ways to do that, all of them have some downsides:
All these methods are indeed covered by umbrella terms "HTTP push" and "comet". There's plenty of documentation, tutorials and existing solutions flying around. For example, for RoR, you can try Juggernaut or shooting_star, or just opt for minimalistic solutions.
Finally, I'd like to recommend an excellent article by Gregor Roth on SSE (part 1) and WebSockets (part 2) that gives detailed explanations, examples and prospects for usage.
From what it sounds, you only need the ping when the page is loaded and people are watching it. If that is the case, I think you can avoid a backend process.
I would think that an ajax call to a controller action that pings and then outputs the response. You could control the frequency, start, stop through javascript on the page and update a specific div or other page object with the response.
this example uses ruby ping library which only returns true. If you need more functionality there are other libraries available (e.g. net-ping).
In your controller
require 'ping'
def ping
if Ping.ping_echo(params[:hostname], params[:timeout])
render :text => "Oh goodie, it pinged successfully"
else
render :text => "No go on the pingage"
end
end
And then in your javascript (I am using jQuery, but you could use prototype/scriptaculous or you favorite JS flavor):
function ping_host {
$.get("/controller/ping", function(data){
$("#some_div_id").append(data);
});
}
From there you can use a setTimeout command to run it every 5 seconds or however often you would like to generate the ping.
If you need the ping going on all the time, you might want to look at some backend job processors like resqueue that would update a database table with the ping results, or a memcached store that you then poll using a similar method as above from the page.