HomeDev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunityDoc feedbackLog In
GitHubNuGetDev CommunityDoc feedback


Notes

This content applies to Optimizely Content Management System (CMS) versions 10 and 11.

You can install mirroring only on Episerver CMS 7.5 (through the Deployment Center). If you want mirroring with the latest CMS version, install a CMS 7.5 site with mirroring, and then upgrade to the latest CMS through NuGet because there is no NuGet package for mirroring functionality; it is installed as a separate service in a virtual directory on the server. An updated DLL is available in the _EPiServer.CMS.Core_ NuGet package (_packages/EPiServer.CMS.Core.9.0.0/tools/MirroringService/_), which you must manually patch to support CMS 10.

Optimizely CMO and Optimizely Customized Commerce do not support mirroring. Also, content mirroring is not supported in a cloud deployment such as Windows Azure Web Apps and Optimizely Digital Experience Platform (DXP).

## Monitor mirror jobs

The Monitoring Server monitors mirroring jobs. When you start a mirroring job, the Mirroring Source Server sends an event (`MirroringStatusEventArgs`) for the state changing of the mirroring job to the monitoring server. A subscriber can follow mirroring states from start to end.



### Mirroring job states

Mirroring jobState
`MirroringJobInitialized`Sent after a mirroring job is initialized.
`MirroringPackageInitialized`Sent after a mirroring package is initialized (info about the package is also send).
`Transferring`Sent during transferring of a mirroring package.
`Transferred`Sent when the mirroring package is transferred.
`MirroringPackageCompleted`Sent when the package was imported.
`MirroringJobCompleted`Sent when the last package is imported and the entire mirroring job is finished.
`ExportingError`Sent if an error occurs during export.
`TransferingError`Sent if an error occurs during transfer.
`ImportingError`Sent if an error occurs during import.

###  MirroringStatusEventArgs

EventDescription
`MirroringStatusEventArgs`Contains a GUID which is the mirroring job ID and a `MirroringTransferData`.
`MirroringTransferData`Contains `MirroringInitializeData`, `MirroringPackageBody`, `MirroringPackageHeader` and `MirroringStatus`.
`MirroringInitializeData`Contains `Name`, `DestinationPageGuid`, `DestinationPath`, `DestinationRoot`, `LastExecution`, `NrOfFilesinPackage`, `NrOfPagesInPackages` and so on.
`MirroringPackageHeader`Contains ` FileSize`, `TargetFilePath`, `SizeOfSentData`, `SizeOfReceiveData`.
`MirroringStatus`Contains `MirroringState` and `StatusLog` (contains information about Processing, Warning and Error).

### Monitoring modes

Monitoring modeDescription
`Offline Monitoring`The Mirroring Server by default logs states of a mirroring job as an XML file under \*C:\\MirroringMonitoringData\*. The filename starts with a unique ID and timestamp. In the CTP version, this mode is always on; it cannot be configured. The XML file contains a list of `MirroringStatusEventArgs`.
`Online Monitoring`The Monitoring server sends events to subscribers online.

## Configure monitoring

The Monitoring Server is based on Windows Communication Foundation (WCF) Duplex Communication channel and you can configure it in the config file. The Monitoring Server is integrated with the Mirroring Server 2.0 and the installation program configures it to use port 80 by default.

### Monitor server configuration



### Monitor client configuration



## Use the monitoring utility

A custom subscriber can use the `MirroringMonitoringClient` helper class and receive events through the `MirroringTransferStatusEventHandler`. You also can subscribe to a specific mirroring job through the `Subscribe (GUID contextId)` method, or for all mirroring jobs through the `Subscribe()` method.

### Helper class code example

To subscribe against the monitoring server, create an instance of `MirroringMonitoringClient` `endpointName` in _app.config_.



To receive Mirroring events or to be notified from the Monitoring Server, the application has to add a handler to the `MirroringTransferStatusEventHandler` event.



### Application example

Mirroring 2.0 ships with a simple example of the Monitoring WinForms application which lets you view both online and offline logs.