Replication Status

This plugin displays an icon that shows the status of a replication job in color. Additional information about the replication is displayed when the mouse is hovered over the icon.
By default, the color of the icon is green (OK), orange (WARNING) or red (ERROR). The tooltip contains information about the time of the last replication update as well as potential errors or warnings.

ID

replicationStatusPlugin

Configuration

Example 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 can be taken from the target index of the replication.
2 The interval specifies in milliseconds how often the status of the replication should be retrieved. The automatic update can be deactivated by setting the value to -1.
3 The icon that is colored to indicate the status of the replication.
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 without 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 overwrites the CSS.


Keywords: