1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
module Fog
module OpenStack
class Network
class Real
def get_lb_pool_stats(pool_id)
request(
:expects => [200],
:method => 'GET',
:path => "lb/pools/#{pool_id}/stats"
)
end
end
class Mock
def get_lb_pool_stats(pool_id)
response = Excon::Response.new
if data = self.data[:lb_pools][pool_id]
stats = {}
stats["active_connections"] = 0
stats["bytes_in"] = 0
stats["bytes_out"] = 0
stats["total_connections"] = 0
response.status = 200
response.body = {'stats' => stats}
response
else
raise Fog::OpenStack::Network::NotFound
end
end
end
end
end
end
|