Recently had a request to provide statistics/ script-out the data that is exposed by vSphere Replication report tab. Based from a post from Virtu-al, you can get the transferred bytes from one of the Arguments value in the Completed Event. Here’s a quick one liner to expose all the events. Get-VIEvent -MaxSamples ([int]::MaxValue) | Where { $_.EventTypeId -match “hbr|rpo” } | Select CreatedTi