ReplicationVmProgressInfo

ReplicationVmProgressInfo
ReplicationVmProgressInfo

A set of statistics related to the progress of the current operation (full sync or lwd).

AllOf
This class requires all of the following:
JSON Example
{
    "_typeName": "string",
    "progress": 0,
    "bytesTransferred": 0,
    "bytesToTransfer": 0,
    "checksumTotalBytes": 0,
    "checksumComparedBytes": 0
}
integer As int32 As int32
progress
Required

An estimation of the operation progress as a percentage completed, from 0 to 100.

integer As int64 As int64
bytesTransferred
Required

Number of bytes transferred so far.

For sync operations, this value includes (i.e. counts multiple times) areas that were transferred multiple times (due to stopping and continuing the operation, or for some errors).

integer As int64 As int64
bytesToTransfer
Required

The total number of bytes to be transferred.

For lwd operations, this is the total size of the disk images that are transferring. This is known from the start and will not change during a lwd operation.

For sync operations, this is the total size of the blocks that have been found not to match between the primary and secondary (by comparing checksums). It starts from 0 and grows as the checksum operations advance. The value includes (i.e. counts multiple times) areas that will end up being transferred more than once (due to stopping and continuing the operation, or for some errors).

integer As int64 As int64
checksumTotalBytes
Optional

The total number of bytes to be checksummed, only present for sync tasks.

This is the total size of all disks.

integer As int64 As int64
checksumComparedBytes
Optional

The total number of bytes that were checksummed, only present for sync tasks.