From 31cf9fb59e2237d522cb521368de4e2aee757f9b Mon Sep 17 00:00:00 2001 From: Matthew Sevey Date: Wed, 24 Nov 2021 14:13:26 -0500 Subject: [PATCH] Disable load check until we have a process of actively addressing it --- setup-scripts/health-checker.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup-scripts/health-checker.py b/setup-scripts/health-checker.py index 7c5e9d94..738e8c2c 100755 --- a/setup-scripts/health-checker.py +++ b/setup-scripts/health-checker.py @@ -43,7 +43,9 @@ setup() async def run_checks(): print("Running Skynet portal health checks") 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_health() await check_alerts()