From 7e0c34d84302b713de357c850887dc5c232c895e Mon Sep 17 00:00:00 2001 From: Jaime Fullaondo Date: Fri, 6 Oct 2017 10:45:13 -0400 Subject: [PATCH] Revert "Added Percentage Free Memory Stats (#3472)" (#3540) This reverts commit 62902aaaee7796f6bff9a5d3d19e1e5cea51ccb0. --- checks/system/unix.py | 1 - 1 file changed, 1 deletion(-) diff --git a/checks/system/unix.py b/checks/system/unix.py index bc890a77cb..2538314a5b 100644 --- a/checks/system/unix.py +++ b/checks/system/unix.py @@ -407,7 +407,6 @@ def check(self, agentConfig): if memData['physTotal'] > 0: memData['physPctUsable'] = float(memData['physUsable']) / float(memData['physTotal']) - memData['physPctFree'] = float(memData['physFree']) / float(memData['physTotal']) except Exception: self.logger.exception('Cannot compute stats from %s', proc_meminfo)