diff options
-rw-r--r-- | sos/report/plugins/process.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sos/report/plugins/process.py b/sos/report/plugins/process.py index be2829a5..b8fa9d3c 100644 --- a/sos/report/plugins/process.py +++ b/sos/report/plugins/process.py @@ -60,4 +60,9 @@ class Process(Plugin, IndependentPlugin): if self.get_option("samples"): self.add_cmd_output("iotop -b -o -d 0.5 -t -n %s" % self.get_option("samples")) + + self.add_cmd_output([ + "pidstat -p ALL -rudvwsRU --human -h", + "pidstat -tl" + ]) # vim: set et ts=4 sw=4 : |