aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexandru Juncu <alexj@linux.com>2015-10-21 10:00:19 +0200
committerBryn M. Reeves <bmr@redhat.com>2018-03-13 11:39:40 +0000
commite6365fa4993411add9662bf5a98f1fb097ed6bab (patch)
treefe1ac73c6c40f3dfb1c986384ea161143859e648
parent54ac8c1ab31ea6ea0b99385bce9ec9d5e2d7c5d6 (diff)
downloadsos-e6365fa4993411add9662bf5a98f1fb097ed6bab.tar.gz
[process] Add thread centered output for ps
Add out put for the following command: ps -elfL This is a more friendly output for viewing thread related information. Fixes: #668 Closes: #669 Signed-off-by: Alexandru Juncu <alexj@linux.com> Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/process.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/sos/plugins/process.py b/sos/plugins/process.py
index eb2a5af3..ea56349e 100644
--- a/sos/plugins/process.py
+++ b/sos/plugins/process.py
@@ -42,6 +42,7 @@ class Process(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
self.add_cmd_output([
"ps auxwwwm",
"ps alxwww",
+ "ps -elfL",
"%s %s" % (ps_axo, ps_group_opts),
"%s %s" % (ps_axo, ps_sched_opts)
])