From 4b004ba3e4fd83da5d7fbea617478918d9ee2ec2 Mon Sep 17 00:00:00 2001 From: Bryan Quigley Date: Thu, 14 Feb 2019 14:34:58 -0800 Subject: [systemd] Add many other lists, statuses systemctl list-jobs - any currently runnign list-dependencies - nice dependency tree list-timers --all - what timers are setup/active list-machines - for systemd container orcestration systemd-resolve --status - what link is using what dns server, etc --statistics - how cache/DNSSEC/etc are doing Resolves: #1565 Closes: #1457 Signed-off-by: Bryan Quigley Signed-off-by: Bryn M. Reeves --- sos/plugins/systemd.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sos/plugins/systemd.py b/sos/plugins/systemd.py index 90d723ff..e417a182 100644 --- a/sos/plugins/systemd.py +++ b/sos/plugins/systemd.py @@ -35,11 +35,17 @@ class Systemd(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "systemctl list-units", "systemctl list-units --failed", "systemctl list-unit-files", + "systemctl list-jobs", + "systemctl list-dependencies", + "systemctl list-timers --all", + "systemctl list-machines", "systemctl show-environment", "systemd-delta", "systemd-analyze", "systemd-analyze blame", "systemd-analyze dump", + "systemd-resolve --status", + "systemd-resolve --statistics", "journalctl --list-boots", "ls -lR /lib/systemd", "timedatectl" -- cgit