mirror of
https://github.com/retspen/webvirtcloud.git
synced 2026-05-26 15:13:33 +00:00
fix cpu_usage waiting for instance creation.
This commit is contained in:
@@ -51,7 +51,7 @@ class Compute(Model):
|
|||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def cpu_usage(self):
|
def cpu_usage(self):
|
||||||
return round(self.proxy.get_cpu_usage().get('usage'))
|
return round(self.proxy.get_cpu_usage(diff=False).get('usage'))
|
||||||
|
|
||||||
@cached_property
|
@cached_property
|
||||||
def ram_size(self):
|
def ram_size(self):
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ class wvmHostDetails(wvmConnect):
|
|||||||
else:
|
else:
|
||||||
return {"total": None, "usage": None, "percent": None}
|
return {"total": None, "usage": None, "percent": None}
|
||||||
|
|
||||||
def get_cpu_usage(self):
|
def get_cpu_usage(self, diff=True):
|
||||||
"""
|
"""
|
||||||
Function return cpu usage on node.
|
Function return cpu usage on node.
|
||||||
"""
|
"""
|
||||||
@@ -43,6 +43,8 @@ class wvmHostDetails(wvmConnect):
|
|||||||
diff_idle = idle - prev_idle
|
diff_idle = idle - prev_idle
|
||||||
diff_total = total - prev_total
|
diff_total = total - prev_total
|
||||||
diff_usage = (1000 * (diff_total - diff_idle) / diff_total + 5) / 10
|
diff_usage = (1000 * (diff_total - diff_idle) / diff_total + 5) / 10
|
||||||
|
if not diff:
|
||||||
|
return {"usage": diff_usage}
|
||||||
prev_total = total
|
prev_total = total
|
||||||
prev_idle = idle
|
prev_idle = idle
|
||||||
if num == 0:
|
if num == 0:
|
||||||
|
|||||||
Reference in New Issue
Block a user