diff options
-rw-r--r-- | sos/plugins/kernelrt.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sos/plugins/kernelrt.py b/sos/plugins/kernelrt.py index ad5c4e79..72b043dd 100644 --- a/sos/plugins/kernelrt.py +++ b/sos/plugins/kernelrt.py @@ -33,7 +33,8 @@ class KernelRT(Plugin, RedHatPlugin): self.add_copy_spec('/sys/kernel/realtime') self.add_copy_spec('/sys/devices/system/clocksource/clocksource0/available_clocksource') self.add_copy_spec('/sys/devices/system/clocksource/clocksource0/current_clocksource') - if self.is_installed('tuna'): - self.add_cmd_output('tuna -CP | /usthead -20') + # note: rhbz#1059685 'tuna - NameError: global name 'cgroups' is not defined' + # this command throws an exception on versions prior to 0.10.4-5. + self.add_cmd_output('tuna -CP') # vim: et ts=4 sw=4 |