apeckham / healthz

Health URL for a Rails app

This URL has Read+Write access

name age message
file README Loading commit data...
file Rakefile
file init.rb
directory lib/
directory test/
README
Helps you make a quick status page that shows whether your application is OK.

Install with:
  script/plugin install git://github.com/apeckham/healthz.git

In routes.rb I added this:
  map.connect '/healthz', :controller => "healthz", :action => "healthz"

Now you can hit your app on /healthz and see the application and schema versions. This URL should only return a 200 OK 
and a response beginning with "status_ok" if both those values are readable. Otherwise it should return an HTTP 500.