Ruby

Below is an example of making an HTTP request to Healthcheck from Ruby.

require 'net/http'
require 'uri'

Net::HTTP.get(URI.parse('http://192.168.1.102:9005/ping/your-uuid-here'))