Disable load check until we have a process of actively addressing it
This commit is contained in:
parent
124695c17e
commit
31cf9fb59e
|
@ -43,7 +43,9 @@ setup()
|
||||||
async def run_checks():
|
async def run_checks():
|
||||||
print("Running Skynet portal health checks")
|
print("Running Skynet portal health checks")
|
||||||
try:
|
try:
|
||||||
await check_load_average()
|
# Disabling load check until we have metrics solution and process to
|
||||||
|
# better address
|
||||||
|
# await check_load_average()
|
||||||
await check_disk()
|
await check_disk()
|
||||||
await check_health()
|
await check_health()
|
||||||
await check_alerts()
|
await check_alerts()
|
||||||
|
|
Reference in New Issue