aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sos/plugins/systemd.py11
1 files changed, 10 insertions, 1 deletions
diff --git a/sos/plugins/systemd.py b/sos/plugins/systemd.py
index 6e8acff9..94266a92 100644
--- a/sos/plugins/systemd.py
+++ b/sos/plugins/systemd.py
@@ -39,11 +39,15 @@ class Systemd(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
"systemd-delta",
"systemd-analyze",
"systemd-analyze blame",
+ "systemd-analyze dump",
"journalctl --list-boots",
"ls -lR /lib/systemd",
"timedatectl"
])
+ self.add_cmd_output("systemd-analyze plot",
+ suggest_filename="systemd-analyze_plot.svg")
+
if self.get_option("verify"):
self.add_cmd_output("journalctl --verify")
@@ -52,7 +56,12 @@ class Systemd(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
"/lib/systemd/system",
"/lib/systemd/user",
"/etc/vconsole.conf",
- "/etc/yum/protected.d/systemd.conf"
+ "/etc/yum/protected.d/systemd.conf",
+ "/run/systemd/generator*",
+ "/run/systemd/seats",
+ "/run/systemd/sessions",
+ "/run/systemd/system",
+ "/run/systemd/users"
])
# vim: set et ts=4 sw=4 :