diff --git a/pvcweb-vue/src/components/NodeStatus.vue b/pvcweb-vue/src/components/NodeStatus.vue index 533061f..0fcc25b 100644 --- a/pvcweb-vue/src/components/NodeStatus.vue +++ b/pvcweb-vue/src/components/NodeStatus.vue @@ -11,16 +11,18 @@
- Health: {{ node.health }}% + Health: {{ node.health || 0 }}%
- State: {{ node.state }}
- CPU: {{ node.cpu_cores }} cores ({{ node.cpu_load }}% load)
- Memory: {{ formatMemory(node.memory_used) }}/{{ formatMemory(node.memory_total) }} ({{ node.memory_utilization }}%)
- VMs: {{ node.vms.length }} {{ node.vms.length === 1 ? 'VM' : 'VMs' }}
+ Daemon: {{ node.daemon_state || 'Unknown' }}
+ Coordinator: {{ node.coordinator_state || 'Unknown' }}
+ Domain: {{ node.domain_state || 'Unknown' }}
+ CPU: {{ node.cpu_count || 0 }} cores ({{ node.load || 0 }}% load)
+ Memory: {{ formatMemory(node).used }}GB/{{ formatMemory(node).total }}GB ({{ formatMemory(node).percent }}%)
+ VMs: {{ node.domains_count || 0 }} {{ node.domains_count === 1 ? 'VM' : 'VMs' }}