Update the Alarm logic for the DBSS - Replication Agents - Status Rule with the following:
Critical level:
Replace:
condition = ((#DBSS_status_severity_For_Rule#) == 3);
With:
condition = ((#DBSS_status_severity_For_Rule#) == 3 && !("Not Started".equalsIgnoreCase(#status#)));
Warning level:
Replace:
condition = ((#DBSS_status_severity_For_Rule#) == 2 && Integer.parseInt(scope.get("type"))>1);
With:
condition = ((#DBSS_status_severity_For_Rule#) == 2 && Integer.parseInt(scope.get("type"))>1 && !("Not Started".equalsIgnoreCase(#status#)));
Note: Should a cartridge upgrade occur, it will overwrite these changes. It is recommended to copy and modify the copy, and disable the Out-of-Box Rule. This will retain the desired. Rule changes