Class: What::Modules::What

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

Instance Attribute Summary

Attributes inherited from Base

#interval

Instance Method Summary collapse

Methods inherited from Base

#identifier, #initialize, #name, #shared_status, #start_monitoring, #status

Constructor Details

This class inherits a constructor from What::Modules::Base

Instance Method Details

#checkObject



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

def check
  @config.map do |name, uri|
    body = open(uri).read
    @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

#initialize_moduleObject



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

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