我正在研究每个活动主机(SLATAH)的 SLA 违规时间。我想考虑三个参数 CPU、RAM 和 Bw 来计算这个指标。现在,为了考虑这三个参数,我需要计算 totalCurrentRequestedRam。
下面的代码是VM的currentRequestedRam,现在我需要totalCurrentRequestedRam,我应该如何计算?
public int getCurrentRequestedRam() {
if (isBeingInstantiated()) {
return getRam();
}
return (int) (getCloudletScheduler().getCurrentRequestedUtilizationOfRam() * getRam());
}