Sha256: 2428d60f639bf3d3ef5e430b3c0fb5eae75d1b983cc6c09aea8bafd766e85dba
Contents?: true
Size: 823 Bytes
Versions: 40
Compression:
Stored size: 823 Bytes
Contents
module Fog module Network class OpenStack 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::Network::OpenStack::NotFound end end end end end end
Version data entries
40 entries across 40 versions & 5 rubygems