diff options
author | Honza Pokorny <me@honza.ca> | 2017-07-06 14:40:03 -0300 |
---|---|---|
committer | Adam Stokes <battlemidget@users.noreply.github.com> | 2017-07-06 13:40:03 -0400 |
commit | de9864a01cdd6ef9f27305990a34e9ca5b7baa5b (patch) | |
tree | a63d52aff95af8cf19fe710de3205231dc208f10 | |
parent | 67734bcd4faec82e73e4a0e12d7cda87f9b8c49b (diff) | |
download | sos-de9864a01cdd6ef9f27305990a34e9ca5b7baa5b.tar.gz |
[tripleo] Add ui logs (#1052)
We're using the "openstack" command to stream the ui log file to stdout.
Signed-off-by: Honza Pokorny <honza@redhat.com>
Signed-off-by: Adam Stokes <battlemidget@users.noreply.github.com>
-rw-r--r-- | sos/plugins/openstack_instack.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sos/plugins/openstack_instack.py b/sos/plugins/openstack_instack.py index f990476a..a2c16179 100644 --- a/sos/plugins/openstack_instack.py +++ b/sos/plugins/openstack_instack.py @@ -83,6 +83,9 @@ class OpenStackInstack(Plugin): deployment + ".log", timeout=600) + self.add_cmd_output("openstack object save " + "tripleo-ui-logs tripleo-ui.logs --file -") + def postproc(self): protected_keys = [ "UNDERCLOUD_TUSKAR_PASSWORD", "UNDERCLOUD_ADMIN_PASSWORD", |