Skip to content

Latest commit

 

History

History
21 lines (11 loc) · 407 Bytes

Readme.md

File metadata and controls

21 lines (11 loc) · 407 Bytes

Heartbeat service

This service always returns a status 200 when it can be accessed.

Example

Add the heartbeat-service to your docker-compose.yml.

heartbeat:
  image: madnificent/heartbeat-service

Add the following to your dispatcher.ex

match "/heartbeat/*path" do
  Proxy.forward conn, path, "http://heartbeat/"
end

All calls to /heartbeat will now return a status 200.