diff options
-rw-r--r-- | sos/plugins/numa.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sos/plugins/numa.py b/sos/plugins/numa.py index dde8c612..edb649e2 100644 --- a/sos/plugins/numa.py +++ b/sos/plugins/numa.py @@ -44,8 +44,8 @@ class Numa(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): 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*/meminfo"), + os.path.join(numa_path, "node*/cpulist"), os.path.join(numa_path, "node*/distance") ]) |