Represents specific mirror operation statistics.
In a cluster that is active the numbers should be used as an estimation only, since statistics gathering is concurrent.
In a cluster that does not have any activity the numbers are accurate.
The statistics should comply to the following formula :
operationCount = successfulCount + failedCount + discardedCount.
This formula will not have an exact fit in active cluster and should be used as an estimation only.

C# | Visual Basic | Visual C++ | J# |
public interface IMirrorOperationStatistics
Public Interface IMirrorOperationStatistics
public interface class IMirrorOperationStatistics
public interface IMirrorOperationStatistics

All Members | Properties | ||||
Icon | Member | Description |
---|---|---|
![]() | DiscardedOperationCount |
Gets the total count of operations that were discarded by the mirror.
This applies to transient objects.
|
![]() | FailedOperationCount |
Gets the total count of operations that failed on the mirror.
|
![]() | InProgressOperationCount |
Gets the count of operations that are currently in progress on the mirror
|
![]() | OperationCount |
Gets the total count of operations that were executed on the mirror.
|
![]() | SuccessfulOperationCount |
Gets the total count of operations that were successfully executed on the mirror.
|