Class MonitorInfo
- java.lang.Object
-
- com.alibaba.nacos.config.server.model.app.MonitorInfo
-
public class MonitorInfo extends Object
Created by qingliang on 2017/7/20.- Author:
- Nacos
-
-
Constructor Summary
Constructors Constructor Description MonitorInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description doublegetCpuRatio()intgetFgc()doublegetFgct()longgetFreeMemory()doublegetGct()doublegetLoad()longgetMaxMemory()longgetTotalMemory()intgetYgc()doublegetYgct()voidsetCpuRatio(int cpuRatio)voidsetFgc(int fgc)voidsetFgct(int fgct)voidsetFreeMemory(long freeMemory)voidsetGct(int gct)voidsetLoad(int load)voidsetMaxMemory(long maxMemory)voidsetTotalMemory(long totalMemory)voidsetYgc(int ygc)voidsetYgct(int ygct)StringtoString()
-
-
-
Method Detail
-
getFreeMemory
public long getFreeMemory()
-
setFreeMemory
public void setFreeMemory(long freeMemory)
-
getMaxMemory
public long getMaxMemory()
-
setMaxMemory
public void setMaxMemory(long maxMemory)
-
getTotalMemory
public long getTotalMemory()
-
setTotalMemory
public void setTotalMemory(long totalMemory)
-
getCpuRatio
public double getCpuRatio()
-
setCpuRatio
public void setCpuRatio(int cpuRatio)
-
getLoad
public double getLoad()
-
setLoad
public void setLoad(int load)
-
getYgc
public int getYgc()
-
setYgc
public void setYgc(int ygc)
-
getYgct
public double getYgct()
-
setYgct
public void setYgct(int ygct)
-
getFgc
public int getFgc()
-
setFgc
public void setFgc(int fgc)
-
getFgct
public double getFgct()
-
setFgct
public void setFgct(int fgct)
-
getGct
public double getGct()
-
setGct
public void setGct(int gct)
-
-