Kubernetes UI仪表板显示(这匹配此minion上的free -m)
内存:7.29 GB / 7.84 GB
这种整体内存使用量随着时间的推移逐渐增加。我正在尝试使用此指标的 Kubernetes / Grafana 默认仪表板来查看此内存增长:memory / usage_bytes_gauge。但是,我在小兵上看到以下内容
- The units do not match, i.e: approx 7GB used vs 200MiB on the plot
- Memory change is all over in the graph as opposed to gradual increase
答案 0 :(得分:1)
您可以使用 @Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton checkedRadioButton = (RadioButton)group.findViewById(checkedId);
int CorrectAnswer=Integer.parseInt(checkedRadioButton.getTag().toString());
....your code here...
}
代替memory/working_set_bytes_guage
吗?
kube UI可能正在使用与free相关的工作集。
memory/usage_bytes_guage
包含内核可以按需回收的页面。