Validate by running following on the vCenter.
# df -h
The output is be similar to the following :
Filesystem Size Used Avail Use% Mounted on /dev/mapper/log_vg-log 9.9G 9.9G 0G 100% /storage/log
VMware vCenter Server 6.x
VMware vCenter Server 7.x
VMware vCenter Server 8.x
There are support log bundles or other files in the vCenter log directory which are consuming space, thus filling up the /storage/log partition.
1. Search for log bundles. Log bundles by default will be named similar to "vc-support-<vc_name>-<date&time>.tgz"
# find / -name *.tgz
2. Navigate to the relevant directory:
# cd /storage/log
3. Delete the log bundles:
rm <logbundlename>.tgz
4. Restart vCenter services:
service-control --stop --all && service-control --start --all