xyz.erupt.monitor.vo.redis.RedisCmdStat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of erupt-monitor Show documentation
Show all versions of erupt-monitor Show documentation
erupt monitor → redis / server
package xyz.erupt.monitor.vo.redis;
import lombok.Getter;
import lombok.Setter;
/**
* @author YuePeng
* date 2021/1/31 21:47
*/
@Getter
@Setter
public class RedisCmdStat {
private String name;
private String value;
public RedisCmdStat(String name, String value) {
this.name = name;
this.value = value;
}
}