!239 fix: redis7.0 监控查询calls数值过大转Intger异常

Merge pull request !239 from lanyue52011/feature/visual
This commit is contained in:
芋道源码 2022-07-29 11:15:07 +00:00 committed by Gitee
commit e46286d18a
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
2 changed files with 2 additions and 2 deletions

View File

@ -34,7 +34,7 @@ public class RedisMonitorRespVO {
private String command;
@ApiModelProperty(value = "调用次数", required = true, example = "1024")
private Integer calls;
private Long calls;
@ApiModelProperty(value = "消耗 CPU 秒数", required = true, example = "666")
private Long usec;

View File

@ -22,7 +22,7 @@ public interface RedisConvert {
commandStats.forEach((key, value) -> {
respVO.getCommandStats().add(RedisMonitorRespVO.CommandStat.builder()
.command(StrUtil.subAfter((String) key, "cmdstat_", false))
.calls(Integer.valueOf(StrUtil.subBetween((String) value, "calls=", ",")))
.calls(Long.valueOf(StrUtil.subBetween((String) value, "calls=", ",")))
.usec(Long.valueOf(StrUtil.subBetween((String) value, "usec=", ",")))
.build());
});