Replication Status

This plugin displays an icon that indicates the status of a replication job using color. Additional information about the replication is displayed when you hover over the icon with the mouse.
By default, the icon color indicates green (OK), orange (WARNING), or red (ERROR). The tooltip contains information about when the replication was last updated, as well as any potential errors or warnings.

ID

replicationStatusPlugin

Configuration

Sample configuration
{
    "replicationIndex" : "", (1)
    "refreshInterval"  : 60000, (2)
    "iconCls"          : "x-fal fa-file-import", (3)
    "successColorCls"  : "successColor", (4)
    "warningColorCls"  : "warningColor", (5)
    "failureColorCls"  : "failureColor", (6)
    "successCssColor"  : "", (7)
    "warningCssColor"  : "", (8)
    "failureCssColor"  : "" (9)
}
1 The replication index is required for the plugin and must be taken from the target index of the replication.
2 The interval specifies, in milliseconds, how often the replication status should be retrieved. Automatic updating can be disabled by setting the value to -1.
3 The icon that is colored to indicate the replication status.
4 Class name for the color to be displayed for a status without errors or warnings.
5 Class name for the color to be displayed for a status with a warning.
6 Class name for the color to be displayed for a status with an error.
7 Color to be displayed for a status with no errors or warnings (e.g., "green" or "#008000").
8 Color to be displayed for a status with a warning.
9 Color to be displayed for a status with an error.

If both a color class and a CSS color are set, the class overrides the CSS.


Keywords: