Jake Hunsaker has uploaded a new change for review. Change subject: Collect engine-config and domain information ......................................................................
Collect engine-config and domain information Currently sos/log-collector does not capture engine-config values or domain information. We should capture both of these as the tunables can help in troubleshooting. Similarly the domain information can help track AD/IPA issues. These can currently dug out from the DB dump, however having them in a plaintext file makes checking these much faster and easier, and a DB is not always available. Change-Id: I1c5d715e6584c7624139bbfb4304ffdc40c4e7dc Signed-off-by: Jake Hunsaker <[email protected]> --- M src/sos/plugins/ovirt.py 1 file changed, 3 insertions(+), 0 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-log-collector refs/changes/16/36116/1 diff --git a/src/sos/plugins/ovirt.py b/src/sos/plugins/ovirt.py index c41dd8b..5e903ce 100644 --- a/src/sos/plugins/ovirt.py +++ b/src/sos/plugins/ovirt.py @@ -86,6 +86,9 @@ self.addForbiddenPath('/etc/ovirt-engine/.pgpass') self.addForbiddenPath('/etc/rhevm/.pgpass') + # Copy all engine tunables and domain information + self.collectExtOutput("engine-config --all") + self.collectExtOutput("engine-manage-domains list") # Copy engine config files. self.addCopySpecs([ "/etc/ovirt-engine", -- To view, visit http://gerrit.ovirt.org/36116 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I1c5d715e6584c7624139bbfb4304ffdc40c4e7dc Gerrit-PatchSet: 1 Gerrit-Project: ovirt-log-collector Gerrit-Branch: master Gerrit-Owner: Jake Hunsaker <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
