Class: What::Modules::What

Inherits:
Base
  • Object
show all
Defined in:
lib/what/modules/what.rb

Instance Method Summary collapse

Methods inherited from Base

#name, #status

Constructor Details

#initializeWhat

Returns a new instance of What.



4
5
6
7
8
9
10
# File 'lib/what/modules/what.rb', line 4

def initialize
  super
  @config.each do |name, host|
    @config[name] = "http://#{host}:9428"
  end
  @whats = {}
end

Instance Method Details

#check!Object



12
13
14
15
16
# File 'lib/what/modules/what.rb', line 12

def check!
  @config.map do |name, uri|
    Helpers.curl(uri) { |body| @whats[name] = JSON.parse(body) rescue nil }
  end
end

#detailsObject



22
23
24
# File 'lib/what/modules/what.rb', line 22

def details
  @whats
end

#healthObject



18
19
20
# File 'lib/what/modules/what.rb', line 18

def health
  Helpers.overall_health(@whats.map { |_, attrs| attrs['health'] })
end