diff options
-rw-r--r-- | sos/plugins/systemtap.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sos/plugins/systemtap.py b/sos/plugins/systemtap.py index 68ceee34..170d0c16 100644 --- a/sos/plugins/systemtap.py +++ b/sos/plugins/systemtap.py @@ -28,7 +28,8 @@ class SystemTap(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): def setup(self): self.add_cmd_outputs([ "stap -V 2", - "uname -r" + "uname -r", + "stap-report" ]) # vim: et ts=4 sw=4 |