Skip to content

Commit

Permalink
Revert "Added Percentage Free Memory Stats (#3472)" (#3540)
Browse files Browse the repository at this point in the history
This reverts commit 62902aa.
  • Loading branch information
truthbk authored Oct 6, 2017
1 parent 0927f08 commit 7e0c34d
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion checks/system/unix.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 7e0c34d

Please sign in to comment.