diff options
author | Bryn M. Reeves <bmr@redhat.com> | 2014-04-06 16:47:30 +0100 |
---|---|---|
committer | Bryn M. Reeves <bmr@redhat.com> | 2014-04-06 16:47:30 +0100 |
commit | d3767e23324d58a148c59812477205661acd2026 (patch) | |
tree | 72583eb2a9498bb3ba052986653a9476f5f27c3a | |
parent | fe2248fa32a130a58b8082df93c9ed21104fe7e0 (diff) | |
download | sos-d3767e23324d58a148c59812477205661acd2026.tar.gz |
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 <bmr@redhat.com>
-rw-r--r-- | sos/plugins/memory.py | 3 |
1 files changed, 0 insertions, 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") |