From 0fabc78714068f78e48ea8a27263c5ce13eba678 Mon Sep 17 00:00:00 2001 From: Quentin Madec Date: Mon, 27 Feb 2017 13:26:05 -0500 Subject: [PATCH] [mac] disable gohai As it is misbehaving (eating way more CPU than needed/expected). --- checks/collector.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/checks/collector.py b/checks/collector.py index cd9e721ceb..eb655f3652 100644 --- a/checks/collector.py +++ b/checks/collector.py @@ -779,6 +779,9 @@ def _run_gohai_processes(self): return self._run_gohai(['--only', 'processes']) def _run_gohai(self, options): + # Gohai is disabled on Mac for now + if Platform.is_mac(): + return None output = None try: if not Platform.is_windows():