From d3767e23324d58a148c59812477205661acd2026 Mon Sep 17 00:00:00 2001 From: "Bryn M. Reeves" Date: Sun, 6 Apr 2014 16:47:30 +0100 Subject: Remove dmesg|grep use from memory plugin This is redundant since the whole boottime dmesg (and current dmesg buffer) are captured elsewhere. Also removes shell syntax from the plugin. Related: Issue #253. Signed-off-by: Bryn M. Reeves --- sos/plugins/memory.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sos/plugins/memory.py b/sos/plugins/memory.py index f2ec27cb..d828f68c 100644 --- a/sos/plugins/memory.py +++ b/sos/plugins/memory.py @@ -27,9 +27,6 @@ class Memory(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "/proc/vmstat", "/proc/slabinfo", "/proc/pagetypeinfo"]) - - self.add_cmd_output("dmesg | grep -e 'e820.' -e 'aperature.'", - suggest_filename="dmesg.e820-map") self.add_cmd_output("free", root_symlink = "free") self.add_cmd_output("free -m") -- cgit