Class: Morpheus::HealthInterface
- Inherits:
-
APIClient
- Object
- APIClient
- Morpheus::HealthInterface
- Defined in:
- lib/morpheus/api/health_interface.rb
Instance Method Summary collapse
- #acknowledge_alarm(id, params = {}, payload = {}) ⇒ Object
- #acknowledge_alarms(params, payload = {}) ⇒ Object
- #alarms(params = {}) ⇒ Object
- #export_logs(outfile, params = {}) ⇒ Object
- #get(params = {}) ⇒ Object
- #get_alarm(id, params = {}) ⇒ Object
- #list_alarms(params = {}) ⇒ Object
- #live(params = {}) ⇒ Object
- #logs(params = {}) ⇒ Object
- #notifications(params = {}) ⇒ Object
Instance Method Details
#acknowledge_alarm(id, params = {}, payload = {}) ⇒ Object
38 39 40 41 42 43 |
# File 'lib/morpheus/api/health_interface.rb', line 38 def acknowledge_alarm(id, params={}, payload={}) url = "#{@base_url}/api/health/alarms/#{id}/acknowledge" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#acknowledge_alarms(params, payload = {}) ⇒ Object
45 46 47 48 49 50 |
# File 'lib/morpheus/api/health_interface.rb', line 45 def acknowledge_alarms(params, payload={}) url = "#{@base_url}/api/health/alarms/acknowledge" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#alarms(params = {}) ⇒ Object
19 20 21 |
# File 'lib/morpheus/api/health_interface.rb', line 19 def alarms(params={}) list_alarms(params) end |
#export_logs(outfile, params = {}) ⇒ Object
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 |
# File 'lib/morpheus/api/health_interface.rb', line 66 def export_logs(outfile, params={}) url = "#{@base_url}/api/health/logs/export" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} # execute(opts, {parse_json: false}) if Dir.exist?(outfile) raise "outfile is invalid. It is the name of an existing directory: #{outfile}" end # if @verify_ssl == false # opts[:verify_ssl] = OpenSSL::SSL::VERIFY_NONE # end if @dry_run return opts end http_response = nil bad_body = nil File.open(outfile, 'w') {|f| block = proc { |response| if response.code.to_i == 200 response.read_body do |chunk| #puts "writing to #{outfile} ..." f.write chunk end else # puts_error (#{response.inspect}) #{chunk} ..." bad_body = response.body.to_s end } opts[:block_response] = block http_response = Morpheus::RestClient.execute(opts) } return http_response, bad_body end |
#get(params = {}) ⇒ Object
5 6 7 8 9 10 |
# File 'lib/morpheus/api/health_interface.rb', line 5 def get(params={}) url = "#{@base_url}/api/health" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#get_alarm(id, params = {}) ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/morpheus/api/health_interface.rb', line 30 def get_alarm(id, params={}) raise "#{self.class}.get() passed a blank name!" if id.to_s == '' url = "#{@base_url}/api/health/alarms/#{id}" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#list_alarms(params = {}) ⇒ Object
23 24 25 26 27 28 |
# File 'lib/morpheus/api/health_interface.rb', line 23 def list_alarms(params={}) url = "#{@base_url}/api/health/alarms" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#live(params = {}) ⇒ Object
12 13 14 15 16 17 |
# File 'lib/morpheus/api/health_interface.rb', line 12 def live(params={}) url = "#{@base_url}/api/health/live" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#logs(params = {}) ⇒ Object
59 60 61 62 63 64 |
# File 'lib/morpheus/api/health_interface.rb', line 59 def logs(params={}) url = "#{@base_url}/api/health/logs" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#notifications(params = {}) ⇒ Object
52 53 54 55 56 57 |
# File 'lib/morpheus/api/health_interface.rb', line 52 def notifications(params={}) url = "#{@base_url}/api/health/notifications" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |