Pinglish
A simple Rack app for checking application health. Pinglish responds to GET
requests, returning JSON that conforms to the spec below.
The Spec
-
The application must respond to
GET /
as an HTTP request. -
The request handler should check the health of all services the application depends on, answering questions like, "Can I query agains my MySQL database," "Can I create/read keys in Redis," or "How many docs are in my ElasticSearch index?"
-
The response must return an
HTTP 200 OK
status code if all health checks pass. -
The response must return an
HTTP 503 SERVICE UNAVAILABLE
status code if any health checks fail. -
The response must be of Content-Type
application/json; charset=UTF-8
. -
The response must be valid JSON no matter what, even if JSON serialization or other fundamental code fails.
-
The response must contain a
"status"
key set either to"ok"
or"failures"
. -
The response must contain a
"now"
key set to the current server's time in seconds since epoch as a string. -
If the
"status"
key is set to"failures"
, the response may contain a"failures"
key set to an Array of string names representing failed checks. -
If the
"status"
key is set to"failures"
, the response may contain a"timeouts"
key set to an Array of string names representing checks that exceeded an implementation-specific individual timeout. -
The response body may contain any other top-level keys to supply additional data about services the application consumes, but all values must be strings, arrays of strings, or hashes where both keys and values are strings.
An Example Response
{
// These two keys will always exist.
"now": "1359055102",
"status": "failures",
// This key may only exist when a named check has failed.
"failures": ["db"],
// This key may only exist when a named check exceeds its timeout.
"timeouts": ["really-long-check"],
// Keys like this may exist to provide extra information about
// healthy services, like the number of objects in an S3 bucket.
"s3": "127"
}
Configuring Checks
require "pinglish"
pinglish = Pinglish.new do |ping|
# A single unnamed check is the simplest possible way to use Pinglish, and
# you'll probably never want combine it with other named checks. An unnamed
# check contributes to overall success or failure, but never adds additional
# data to the response.
ping.check do
App.healthy?
end
# A named check like this can provide useful summary information when it
# succeeds. In this case, a top-level "db" key will appear in the response
# containing the number of items in the database. If a check returns nil, no
# key will be added to the response.
ping.check :db do
App.db.items.size
end
# By default, checks time out after one second. You can override this with the
# :timeout option, but be aware that no combination of checks is ever allowed
# to exceed the overall 29 second limit.
ping.check :long, timeout: 5 do
App.dawdle
end
# Signal check failure by raising an exception. Any exception will do.
ping.check :fails do
raise "Everything's ruined."
end
# Additionally, any check that returns false is counted as a failure.
ping.check :false_fails do
false
end
# All checks run, by default. To create a check that is only run when
# requested, provide `false` for the `:enabled_by_default` option. Checks like
# this can be requested using the `checks` query parameter (see below).
ping.check :cpu_intensive_check, enabled_by_default: false do
App.check_all_the_things
end
end
Usage
Use in a Rack app is easy, just mount the app within a map
block.
# config.ru
map '/_ping' do
run Pinglish.new { |ping|
ping.check do
App.healthy?
end
}
end
run App.new
Now requests to GET /_ping
will return this response:
{
"now": "1359055102",
"status": "ok"
}
You can supply an optional checks
query parameter (comma separated names) to select which checks to run. This can be used to run just a subset, or to select checks which have enabled_by_default
set to false
.
GET /_ping?checks=foo,bar,default
(In this case, an unnamed check is referred to as default
, and is not treated specially -- you must specify default
if you pass this parameter and want it to run.)