Sha256: 70eb9072f3fcc467fb6c6284f7992a2fdd10a345334a03305875eac157cabb89
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
require 'rest_client' module ARII class Client ## # => Load configuration properties from client/script code # def initialize config, log begin @config = config ARII::Config.set_access_token config[:server][:api_key] ARII::Config.set_host config[:server][:host] ARII::Config.set_log log ARII::Config.log.info(self.class.name) { 'Configuration loaded successfully.' } rescue Exception => e ARII::Config.log.error(self.class.name) { "Failed to load configuration: #{e}" } end end ## # => Validate API key. # def validate begin ARII::Config.log.info(self.class.name) { 'Launching validation.' } out = RestClient.post "#{ARII::Config.host}fluxcapacitor/validate_key.json", {:access_token => ARII::Config.access_token} response = {:status => 100, :response => out.to_str} rescue Exception => e ARII::Config.log.error(self.class.name) { "Failed validation: #{e}" } end response end ## # => Start processing agents from configuration properties. # def process ARII::Config.log.info(self.class.name) { 'Starting agent processing.' } begin @config[:agents].each do |agent| a = ARII::Agent.new agent a.execute end rescue Exception => e ARII::Config.log.error(self.class.name) { "Failed agent processing: #{e}" } end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
arii-1.2.2 | lib/arii/client.rb |