Skip to content

Commit 02d1c61

Browse files
add amount of system VMs that are allocated to each host in the hosts ListView (#10791)
1 parent 030ed55 commit 02d1c61

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ui/src/config/section/infra/hosts.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,12 @@ export default {
3232
},
3333
params: { type: 'routing' },
3434
columns: () => {
35-
const fields = ['name', 'state', 'resourcestate', 'ipaddress', 'arch', 'hypervisor', 'instances', 'powerstate', 'version']
35+
const fields = [
36+
'name', 'state', 'resourcestate', 'ipaddress',
37+
'arch', 'hypervisor', 'instances',
38+
{ field: 'systeminstances', customTitle: 'system.vms' },
39+
'powerstate', 'version'
40+
]
3641
const metricsFields = ['cpunumber', 'cputotalghz', 'cpuusedghz', 'cpuallocatedghz', 'memorytotalgb', 'memoryusedgb', 'memoryallocatedgb', 'networkread', 'networkwrite']
3742
if (store.getters.metrics) {
3843
fields.push(...metricsFields)

0 commit comments

Comments
 (0)