Hello,
if you want to check is the virtual machines time is synced with the vSphere host, you can use this powershell/powercli code:
Get-VM | Select Name, @{N="SyncTimeWithHost";E={$_.ExtensionData.Config.Tools.SyncTimeWithHost}}
(As usual, remember to use the Connect-VIServer cmdlet before!)
Best regards,
Pablo