1
0
Fork 0
mirror of https://github.com/ThomasGsp/HyperProxmox.git synced 2025-03-09 15:40:18 +00:00

Add details vol used

This commit is contained in:
Tlams 2018-04-25 20:26:10 +01:00
parent 089488f20d
commit 5baf7c7122

View file

@ -194,6 +194,7 @@ class API_Gen_HTML
$macs = ""; $macs = "";
$volids = ""; $volids = "";
$volsize = 0; $volsize = 0;
$volused = 0;
if($last_clust != $qemu->cluster) if($last_clust != $qemu->cluster)
{ {
@ -218,8 +219,9 @@ class API_Gen_HTML
{ {
if ($vol->vmid == $qemu->vmid) if ($vol->vmid == $qemu->vmid)
{ {
$volids = $vol->volid.",".$volids ;
$volsize = $volsize + $vol->size ; $volsize = $volsize + $vol->size ;
$volused = $volused + $vol->used ;
$volids = $vol->volid."(".formatBytes($vol->used)."/".formatBytes($vol->size)."),".$volids ;
} }
} }
} }
@ -244,7 +246,7 @@ class API_Gen_HTML
<td>'.$qemu->vmid.'</td> <td>'.$qemu->vmid.'</td>
<td data-order="'.$qemu->maxmem.'">'.formatBytes(round($qemu->maxmem)).'</td> <td data-order="'.$qemu->maxmem.'">'.formatBytes(round($qemu->maxmem)).'</td>
<td>'.$qemu->cpus.'</td> <td>'.$qemu->cpus.'</td>
<td data-order="'.$volsize.'" id="wrapper-mac"> <a data-toggle="tooltip" data-html="true" title="'.str_replace(",", "<br/>", $volids).'">'.formatBytes($volsize).'</a></td> <td data-order="'.$volsize.'" id="wrapper-mac"> <a data-toggle="tooltip" data-html="true" title="'.str_replace(",", "<br/>", $volids).'">'.formatBytes($volused).'/'.formatBytes($volsize).'</a></td>
<td id="wrapper-mac"> <a data-toggle="tooltip" data-html="true" title="'.str_replace(",", "<br/>", $macs).'">'.$macs.'</a></td> <td id="wrapper-mac"> <a data-toggle="tooltip" data-html="true" title="'.str_replace(",", "<br/>", $macs).'">'.$macs.'</a></td>
<td>'.secondsToDays($qemu->uptime).'</td> <td>'.secondsToDays($qemu->uptime).'</td>
<td>'.$qemu->status.'</td> <td>'.$qemu->status.'</td>