Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 878110 Details for
Bug 1001100
Add log gathering for a new ovirt module (External scheduler)
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
ovirt-scheduler-proxy addition to global ovirt patch
0002-ovirt_engine-added-ovirt-scheduler-proxy.patch (text/plain), 2.50 KB, created by
Sandro Bonazzola
on 2014-03-24 15:51:50 UTC
(
hide
)
Description:
ovirt-scheduler-proxy addition to global ovirt patch
Filename:
MIME Type:
Creator:
Sandro Bonazzola
Created:
2014-03-24 15:51:50 UTC
Size:
2.50 KB
patch
obsolete
>From cf37ca39cbda6ccfb74487a34c24617f127f8806 Mon Sep 17 00:00:00 2001 >From: Sandro Bonazzola <sbonazzo@redhat.com> >Date: Mon, 24 Mar 2014 16:46:31 +0100 >Subject: [PATCH 2/2] ovirt_engine: added ovirt-scheduler-proxy > >Added support for ovirt-scheduler-proxy log files >and version collection. > >Change-Id: I984a4c9e93872db851c2897f60ce26804af4624b >Bug-Url: https://bugzilla.redhat.com/1001100 >Signed-off-by: Sandro Bonazzola <sbonazzo@redhat.com> >--- > sos/plugins/ovirt_engine.py | 28 +++++++++++++++++++++++++--- > 1 file changed, 25 insertions(+), 3 deletions(-) > >diff --git a/sos/plugins/ovirt_engine.py b/sos/plugins/ovirt_engine.py >index bd56fbc..b71e343 100644 >--- a/sos/plugins/ovirt_engine.py >+++ b/sos/plugins/ovirt_engine.py >@@ -59,8 +59,24 @@ class OvirtEngine(Plugin, RedHatPlugin): > ), > ] > >+ def ovirt_scheduler_proxy(self): >+ """ >+ Add ovirt-scheduler-proxy specific data >+ """ >+ self.add_cmd_output( >+ 'rpm -qv ovirt-scheduler-proxy', >+ root_symlink='rpm-qv-ovirt-scheduler-proxy' >+ ) >+ self.add_copy_spec_limit( >+ '/var/log/ovirt-scheduler-proxy', >+ sizelimit=self.limit >+ ) >+ > def setup(self): > super(OvirtEngine, self).setup() >+ if self.is_installed('ovirt-scheduler-proxy'): >+ self.ovirt_scheduler_proxy() >+ > if self.get_option('jbosstrace'): > returncode, output, _runtime = self.call_ext_prog( > 'pgrep -f jboss' >@@ -93,15 +109,21 @@ class OvirtEngine(Plugin, RedHatPlugin): > # Copy engine config files. > self.add_copy_spec("/etc/ovirt-engine") > self.add_copy_spec("/etc/rhevm") >- self.add_copy_spec("/var/log/ovirt-engine") >- self.add_copy_spec("/var/log/rhevm") > self.add_copy_spec("/etc/sysconfig/ovirt-engine") > self.add_copy_spec("/usr/share/ovirt-engine/conf") >- self.add_copy_spec("/var/log/ovirt-guest-agent") > self.add_copy_spec("/var/lib/ovirt-engine/setup-history.txt") > self.add_copy_spec("/var/lib/ovirt-engine/setup/answers") > self.add_copy_spec("/var/lib/ovirt-engine/external_truststore") > self.add_copy_spec("/var/tmp/ovirt-engine/config") >+ for logs in ( >+ 'ovirt-engine', >+ 'ovirt-guest-agent', >+ 'rhevm', >+ ): >+ self.add_copy_spec_limit( >+ '/var/log/%{logs}'.format(logs=logs), >+ sizelimit=self.limit >+ ) > > def postproc(self): > """ >-- >1.8.1.4 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 1001100
:
878109
| 878110