class Bixby::Model::Metric

Public Class Methods

find(id) click to toggle source
# File lib/bixby-client/model/metric.rb, line 15
def self.find(id)
end
list(host_id) click to toggle source
# File lib/bixby-client/model/metric.rb, line 7
def self.list(host_id)
  get("/hosts/#{host_id}/checks")
end
list_for_check(host_id, check_id) click to toggle source
# File lib/bixby-client/model/metric.rb, line 11
def self.list_for_check(host_id, check_id)
  get("/hosts/#{host_id}/checks/#{check_id}/metrics")
end