1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/rackspace/requests/monitoring/get_disks_info.rb

65 lines
2.1 KiB
Ruby

module Fog
module Rackspace
class Monitoring
class Real
def get_disks_info(agent_id)
request(
:expects => [200, 203],
:method => 'GET',
:path => "agents/#{agent_id}/host_info/disks"
)
end
end
class Mock
def get_disks_info(agent_id)
agent_id = Fog::Rackspace::MockData.uuid
if agent_id == -1
raise Fog::Rackspace::Monitoring::NotFound
end
response = Excon::Response.new
response.status = 200
response.body = {
"values" => [
{
"read_bytes" => Fog::Mock.random_numbers(10).to_s,
"reads" => Fog::Mock.random_numbers(6).to_s,
"rtime" => Fog::Mock.random_numbers(6).to_s,
"write_bytes" => Fog::Mock.random_numbers(10).to_s,
"writes" => Fog::Mock.random_numbers(8).to_s,
"wtime" => Fog::Mock.random_numbers(9).to_s,
"time" => Fog::Mock.random_numbers(7).to_s,
"name" => "/dev/xvda1"
}
],
"metadata" => {
"count" => 1,
"limit" => 100,
"marker" => nil,
"next_marker" => nil,
"next_href" => nil
}
}
response.headers = {
"Date" => Time.now.utc.to_s,
"Content-Type" => "application/json; charset=UTF-8",
"X-RateLimit-Limit" => "50000",
"X-RateLimit-Remaining" => "49627",
"X-RateLimit-Window" => "24 hours",
"X-RateLimit-Type" => "global",
"X-Response-Id" => "j23jlk234jl2j34j",
"X-LB" => "dfw1-maas-prod-api0",
"Vary" => "Accept-Encoding",
"Transfer-Encoding" => "chunked"
}
response.remote_ip = Fog::Mock.random_ip({:version => :v4})
response
end
end
end
end
end