Wanting to confirm the actual size of the VM snapshot before deleting (consolidating) it.
vCenter server 8.0 U3 (Base)
vSphere ESX 8.0 U3e
It is possibly due to how vCenter sees the "physical" RDM disks, instead of only based on the actual snapshot files ("sesparse" or "delta").
Confirm the existence of snapshot files ("sesparse" or "delta") and their actual sizes.
cd /vmfs/volumes/<datastore_name>/<vm_name>/ls -lah
Calculate the actual snapshot size by combining all listed snapshot files for each disk. If the RDM disks are "Physical" mode, there should be no snapshot files listed for those disks.
ls -la | grep 'delta|sesparse' | awk '{print $5}' | awk '{ SUM += $1/1024/1024 } END {print "Total Snapshot Size: " SUM " MB"}'
It is possible a fix for the vCenter displaying incorrect snapshot size value is in a later build.