Sha256: d299278267de46059fa66e3adaacec81dd35dbdf642fe7097e9cd3ea81ac1caa

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

#!/usr/bin/env ruby

require 'rubygems'
require 'daemons'
require 'logger'
require File.dirname(__FILE__) + '/../lib/heartbeat-client'

begin
  puts "Using config in your home directory"
  @config = YAML.load(File.read("#{ENV['HOME']}/.heartbeat-client.yml"))
rescue Errno::ENOENT
  raise "heartbeat-client.yml expected in ~/.heartbeat-client.yml"
end

unless @config['apikey']
  puts "API Key not found!"
  exit
end

unless @config['endpoint']
  puts "Service Endpoint not found!"
  exit
end

version = "0.0"
begin
  file = File.open(File.dirname(__FILE__) + "/../VERSION", "rb")
  version = file.read
  puts "heartbeat-client #{version}"
rescue => e
  puts e.message
end

if ARGV and ARGV.size == 1
  Daemons.run_proc('heartbeat-client.rb', :dir => File.join('/tmp'), :monitor => true,
    :backtrace => true, :monitor => true) do
    Heartbeat.log = Logger.new('/tmp/heartbeat.log')
    loop do
      begin
        Heartbeat.create(@config, version)
      rescue => e
        puts e.message
      end
      GC.start
      sleep(30)
    end
  end
else
  puts "Please provide a command to hbc (start|stop|run)!"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
heartbeat-client-0.4.2 bin/hbc
heartbeat-client-0.4.1 bin/hbc