diff options
author | Pavel Moravec <pmoravec@redhat.com> | 2020-10-14 08:33:28 +0200 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2020-10-19 10:25:00 -0400 |
commit | 22b19739d94f0a40fb8dfd3236e63991a0c027b9 (patch) | |
tree | 1012ef348c70472ac60a23352e1c54e553b0bac7 | |
parent | 4a0ebbcf4a9a2cee776323543ced616bb4196667 (diff) | |
download | sos-22b19739d94f0a40fb8dfd3236e63991a0c027b9.tar.gz |
[stratis] Collect key list and report engine
Required for troubleshooting Stratis-engine v. 2.1.0.
Resolves: #2274
Closes: #2273
Signed-off-by: Pavel Moravec <pmoravec@redhat.com>
Signed-off-by: Jake Hunsaker <jhunsake@redhat.com>
-rw-r--r-- | sos/report/plugins/stratis.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sos/report/plugins/stratis.py b/sos/report/plugins/stratis.py index b6071d32..a41c9476 100644 --- a/sos/report/plugins/stratis.py +++ b/sos/report/plugins/stratis.py @@ -24,8 +24,11 @@ class Stratis(Plugin, RedHatPlugin): 'pool list', 'filesystem list', 'blockdev list', + 'key list', 'daemon redundancy', - 'daemon version' + 'daemon version', + 'report engine_state_report', + '--version', ] self.add_cmd_output(["stratis %s" % subcmd for subcmd in subcmds]) |