diff options
-rw-r--r-- | sos/plugins/numa.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sos/plugins/numa.py b/sos/plugins/numa.py index e06a32ee..dde8c612 100644 --- a/sos/plugins/numa.py +++ b/sos/plugins/numa.py @@ -42,4 +42,11 @@ class Numa(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "numactl --hardware", ]) + numa_path = "/sys/devices/system/node" + self.add_copy_spec([ + os.path.join(numa_path, "node*/meminfo") + os.path.join(numa_path, "node*/cpulist") + os.path.join(numa_path, "node*/distance") + ]) + # vim: set et ts=4 sw=4 : |