Showing
3 changed files
with
3 additions
and
3 deletions
@@ -33,7 +33,7 @@ public class RedisMonitorCtrl { | @@ -33,7 +33,7 @@ public class RedisMonitorCtrl { | ||
33 | if (StringUtils.isBlank(response)) { | 33 | if (StringUtils.isBlank(response)) { |
34 | return null; | 34 | return null; |
35 | } | 35 | } |
36 | - log.info("getRedisInfo success and value {}", response); | 36 | + log.info("getRedisInfo success and data {}", response); |
37 | return new BaseResponse<Object>(response); | 37 | return new BaseResponse<Object>(response); |
38 | } | 38 | } |
39 | 39 |
@@ -35,7 +35,7 @@ public class ZkMonitorCtrl { | @@ -35,7 +35,7 @@ public class ZkMonitorCtrl { | ||
35 | if (response == null || CollectionUtils.isEmpty(response)) { | 35 | if (response == null || CollectionUtils.isEmpty(response)) { |
36 | return null; | 36 | return null; |
37 | } | 37 | } |
38 | - log.info("getHostInfos success and total={}", response); | 38 | + log.info("getZkMonitorRecords success and data={}", response); |
39 | return new BaseResponse<Object>(response); | 39 | return new BaseResponse<Object>(response); |
40 | } | 40 | } |
41 | 41 |
@@ -71,7 +71,7 @@ public class ZkMonitorHandleServiceImpl implements IZkMonitorHandleService { | @@ -71,7 +71,7 @@ public class ZkMonitorHandleServiceImpl implements IZkMonitorHandleService { | ||
71 | } | 71 | } |
72 | 72 | ||
73 | /********************************************************************** | 73 | /********************************************************************** |
74 | - *2、处理zookeeper告警 | 74 | + *2、处理zookeeper告警,统计有哪几台机器挂了 |
75 | ***********************************************************************/ | 75 | ***********************************************************************/ |
76 | if(CollectionUtils.isEmpty(alarmList)){ | 76 | if(CollectionUtils.isEmpty(alarmList)){ |
77 | return; | 77 | return; |
-
Please register or login to post a comment