Reset-VMReplicationStatistics
Reset-VMReplicationStatistics
Resets the replication statistics of a virtual machine.
Syntax
Parameter Set: VMName
Reset-VMReplicationStatistics [-VMName] <String[]> [-ComputerName <String[]> ] [-PassThru] [ <CommonParameters>]
Parameter Set: VMObject
Reset-VMReplicationStatistics [-VM] <VirtualMachine[]> [-PassThru] [ <CommonParameters>]
Parameter Set: VMReplication
Reset-VMReplicationStatistics [-VMReplication] <VMReplication[]> [-PassThru] [ <CommonParameters>]
Detailed Description
The Reset-VMReplicationStatistics cmdlet resets the replication statistics of a virtual machine. Statistics accumulated up to that time are deleted, and replication monitoring begins collecting a new set of statistics. If replication health was reported as “Warning”, then this operation also changes the health to “Normal”.
Parameters
-ComputerName<String[]>
Specifies one or more Hyper-V hosts on which the replication statistics of a virtual machine are to be reset. NetBIOS names, IP addresses, and fully-qualified domain names are allowable. The default is the local computer — use “localhost” or a dot (“.”) to specify the local computer explicitly.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-PassThru
Specifies that a VMReplication object is to be passed through to the pipeline representing the replication whose statistics are to be reset.
Aliases |
none |
Required? |
false |
Position? |
named |
Default Value |
none |
Accept Pipeline Input? |
false |
Accept Wildcard Characters? |
false |
-VM<VirtualMachine[]>
Specifies the virtual machine whose replication statistics are to be reset.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
true (ByValue) |
Accept Wildcard Characters? |
false |
-VMName<String[]>
Specifies the name of the virtual machine whose replication statistics are to be reset.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
true (ByValue) |
Accept Wildcard Characters? |
false |
-VMReplication<VMReplication[]>
Specifies the virtual machine replication whose replication statistics are to be reset.
Aliases |
none |
Required? |
true |
Position? |
1 |
Default Value |
none |
Accept Pipeline Input? |
true (ByValue) |
Accept Wildcard Characters? |
false |
<CommonParameters>
This cmdlet supports the common parameters: -Verbose, -Debug, -ErrorAction, -ErrorVariable, -OutBuffer, and -OutVariable. For more information, see about_CommonParameters (https://go.microsoft.com/fwlink/p/?LinkID=113216).
Inputs
The input type is the type of the objects that you can pipe to the cmdlet.
Outputs
The output type is the type of the objects that the cmdlet emits.
- None by default; VMReplication if –PassThru is specified.
Examples
Example 1
Resets replication statistics for virtual machine VM01.
PS C:\> Reset-VMReplicationStatistics VM01
Example 2
Resets the replication statistics of all replication-enabled virtual machines on the local Hyper-V host.
PS C:\> Get-VMReplication | Reset-VMReplicationStatistics