Identify when ESXi host quickstats do not return

This commit updates cpu_utilization_for and memory_utilization_for to detect when quickstats are not present. Without this change a nil result is transformed to 0, which is perceived as a host that has no utilization.
This commit is contained in:
kirby@puppetlabs.com 2018-01-08 09:46:34 -08:00 committed by mattkirby
parent 6ab2e2ff8c
commit ea9deddd2d
2 changed files with 25 additions and 2 deletions

View file

@ -1772,6 +1772,24 @@ EOT
expect(subject.get_host_utilization(host,model,limit)[1]).to eq(host)
end
end
context 'host with no quickstats' do
let(:host) { mock_RbVmomi_VIM_HostSystem({
:cpu_speed => 100,
:num_cores_per_cpu => 1,
:num_cpu => 1,
:memory_size => 100.0 * 1024 * 1024
})
}
before(:each) do
host.summary.quickStats.overallCpuUsage = nil
end
it 'should return nil' do
result = subject.get_host_utilization(host,model,limit)
expect(result).to be nil
end
end
end
describe '#host_has_cpu_model?' do