diff options
-rw-r--r-- | sos/plugins/memory.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/memory.py b/sos/plugins/memory.py index 1124b575..088b79b2 100644 --- a/sos/plugins/memory.py +++ b/sos/plugins/memory.py @@ -25,6 +25,7 @@ class memory(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "/proc/slabinfo", "/proc/pagetypeinfo"]) - self.add_cmd_output("dmesg | grep -e 'e820.' -e 'aperature.'") + 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") |