Posts Tagged ‘database’

Monitoring Rails Apps: Pulse + More

Paul Gross from Thoughtworks recently created a pulse gem. The gem adds a simple action to your rails app, “/pulse”, which acts as a heartbeat.
The pulse gem currently defines the method as:

def pulse
render :text => "OK"
end

Then you can configure haproxy to monitor your application by hitting http://server/pulse and verifying the response [...]