Authored by simba

update

... ... @@ -33,7 +33,7 @@ public class RedisMonitorCtrl {
if (StringUtils.isBlank(response)) {
return null;
}
log.info("getRedisInfo success and value {}", response);
log.info("getRedisInfo success and data {}", response);
return new BaseResponse<Object>(response);
}
... ...
... ... @@ -35,7 +35,7 @@ public class ZkMonitorCtrl {
if (response == null || CollectionUtils.isEmpty(response)) {
return null;
}
log.info("getHostInfos success and total={}", response);
log.info("getZkMonitorRecords success and data={}", response);
return new BaseResponse<Object>(response);
}
... ...
... ... @@ -71,7 +71,7 @@ public class ZkMonitorHandleServiceImpl implements IZkMonitorHandleService {
}
/**********************************************************************
*2、处理zookeeper告警
*2、处理zookeeper告警,统计有哪几台机器挂了
***********************************************************************/
if(CollectionUtils.isEmpty(alarmList)){
return;
... ...