diff options
author | Mamatha Inamdar <mamatha4@linux.vnet.ibm.com> | 2022-05-19 14:33:32 +0530 |
---|---|---|
committer | Jake Hunsaker <jhunsake@redhat.com> | 2022-05-24 09:42:48 -0400 |
commit | fe814172f7180e382e104a12355678d21b9b3c38 (patch) | |
tree | 435969a15c90c79e74c3ff8d7a676a136eea3278 | |
parent | fd7ad0513650e72189d434ee6c5d944ad1f3c14b (diff) | |
download | sos-fe814172f7180e382e104a12355678d21b9b3c38.tar.gz |
[arcconf]: Update arcconf plugin to collect UART logs
This patch is to update arcconf plugin to collect
UART logs
Signed-off-by: Mamatha Inamdar <mamatha4@linux.vnet.ibm.com>
Reported-by: Borislav Stoymirski <borislav.stoymirski@bg.ibm.com>
Tested-by: Borislav Stoymirski <borislav.stoymirski@bg.ibm.com>
-rw-r--r-- | sos/report/plugins/arcconf.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/sos/report/plugins/arcconf.py b/sos/report/plugins/arcconf.py index 2abda2a7..7f0f0208 100644 --- a/sos/report/plugins/arcconf.py +++ b/sos/report/plugins/arcconf.py @@ -23,6 +23,9 @@ class arcconf(Plugin, IndependentPlugin): def setup(self): # get list of adapters - self.add_cmd_output("arcconf getconfig 1") - + self.add_cmd_output([ + "arcconf getconfig 1", + "arcconf list", + "arcconf GETLOGS 1 UART" + ]) # vim: et ts=4 sw=4 |