Skip to content

Commit

Permalink
Adds total count for VMs.
Browse files Browse the repository at this point in the history
  • Loading branch information
luixal authored and bastienwirtz committed Oct 9, 2022
1 parent 10f4cca commit e274807
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/services/Proxmox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<strong class="danger">Error loading info!</strong>
</div>
<div v-else class="metrics">
<span>VMs: <strong class="is-number">{{ vms.running }}</strong></span>
<span>VMs: <span class="is-number"><strong>{{ vms.running }}</strong>/{{vms.total}}</span></span>
<span>Disk: <strong class="is-number" :class="statusClass(diskUsed)">{{ diskUsed }}%</strong></span>
<span>Mem: <strong class="is-number" :class="statusClass(memoryUsed)">{{ memoryUsed }}%</strong></span>
<span>CPU: <strong class="is-number" :class="statusClass(cpuUsed)">{{ cpuUsed }}%</strong></span>
Expand Down

0 comments on commit e274807

Please sign in to comment.