get_bandwidth_graph(options={})
click to toggle source
def get_bandwidth_graph(options={})
request(
:path => '/Monitoring/Bandwidth/graph',
:body => Fog::JSON.encode(:params => options)
)
end
get_bandwidth_stats(options={})
click to toggle source
def get_bandwidth_stats(options={})
request(
:path => '/Monitoring/Bandwidth/stats',
:body => Fog::JSON.encode(:params => options)
)
end
get_load_graph(options={})
click to toggle source
def get_load_graph(options={})
request(
:path => '/Monitoring/Load/graph',
:body => Fog::JSON.encode(:params => options)
)
end
get_load_stats(options={})
click to toggle source
def get_load_stats(options={})
request(
:path => '/Monitoring/Load/stats',
:body => Fog::JSON.encode(:params => options)
)
end
get_service(options={})
click to toggle source
def get_service(options={})
request(
:path => '/Monitoring/Services/get',
:body => Fog::JSON.encode(:params => options)
)
end
get_service_status(options={})
click to toggle source
def get_service_status(options={})
request(
:path => '/Monitoring/Services/status',
:body => Fog::JSON.encode(:params => options)
)
end
monitoring_ips(options={})
click to toggle source
def monitoring_ips(options={})
request(
:path => '/Monitoring/Services/monitoringIps',
:body => Fog::JSON.encode(:params => options)
)
end
update_service(options={})
click to toggle source
def update_service(options={})
request(
:path => '/Monitoring/Services/update',
:body => Fog::JSON.encode(:params => options)
)
end