@@ -1060,19 +1060,19 @@ function Cluster() {
1060
1060
}
1061
1061
var instanceFullNames = [ ] ;
1062
1062
instances . forEach ( function ( instance ) {
1063
- incrementProblems ( "" , instance . title )
1063
+ incrementProblems ( "" , instance . title + " " + instance . Version )
1064
1064
instanceFullNames . push ( getInstanceTitle ( instance . Key . Hostname , instance . Key . Port ) ) ;
1065
1065
if ( instance . inMaintenanceProblem ( ) ) {
1066
- incrementProblems ( "inMaintenanceProblem" , instance . title )
1066
+ incrementProblems ( "inMaintenanceProblem" , instance . title + " " + instance . Version )
1067
1067
}
1068
1068
if ( instance . lastCheckInvalidProblem ( ) ) {
1069
- incrementProblems ( "lastCheckInvalidProblem" , instance . title )
1069
+ incrementProblems ( "lastCheckInvalidProblem" , instance . title + " " + instance . Version )
1070
1070
} else if ( instance . notRecentlyCheckedProblem ( ) ) {
1071
- incrementProblems ( "notRecentlyCheckedProblem" , instance . title )
1071
+ incrementProblems ( "notRecentlyCheckedProblem" , instance . title + " " + instance . Version )
1072
1072
} else if ( instance . notReplicatingProblem ( ) ) {
1073
- incrementProblems ( "notReplicatingProblem" , instance . title )
1073
+ incrementProblems ( "notReplicatingProblem" , instance . title + " " + instance . Version )
1074
1074
} else if ( instance . replicationLagProblem ( ) ) {
1075
- incrementProblems ( "replicationLagProblem" , instance . title )
1075
+ incrementProblems ( "replicationLagProblem" , instance . title + " " + instance . Version )
1076
1076
}
1077
1077
} ) ;
1078
1078
var aggergateInstance = instances [ 0 ] ;
0 commit comments