We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cfdc2d commit 43a9ef2Copy full SHA for 43a9ef2
systemvm/debian/root/health_checks/cpu_usage_check.py
@@ -29,7 +29,7 @@ def main():
29
30
if "maxCpuUsage" not in data:
31
print("Missing maxCpuUsage in health_checks_data systemThresholds, skipping")
32
- exit(2)
+ exit(3)
33
34
maxCpuUsage = float(data["maxCpuUsage"])
35
cmd = "top -b -n2 -p 1 | fgrep \"Cpu(s)\" | tail -1 | " \
systemvm/debian/root/monitorServices.py
@@ -34,7 +34,7 @@ class StatusCodes:
STOPPED = 4
STARTING = 5
36
37
-# see com.cloud.network.VirtualNetworkApplianceService.RouterHealthStatus and make sure to keep it alligned
+# see com.cloud.network.VirtualNetworkApplianceService.RouterHealthStatus and make sure to keep it aligned
38
class RouterHealthStatus:
39
SUCCESS = "SUCCESS"
40
FAILED = "FAILED"
0 commit comments