# File lib/openstack/compute/connection.rb, line 600
    def get_hypervisor_stats
      response = @connection.req('GET', '/os-hypervisors/statistics')
      OpenStack::Exception.raise_exception(response) unless response.code.match(/^20.$/)
      JSON.parse(response.body)['hypervisor_statistics']
    end