From builds at travis-ci.org Mon Aug 1 11:13:02 2016 From: builds at travis-ci.org (Travis CI) Date: Mon, 01 Aug 2016 11:13:02 +0000 Subject: [sos-devel] Passed: psachin/sos#11 (gnocchi - cccaaf5) In-Reply-To: Message-ID: <579f2ebebb824_33fc3b075fc705647db@5c9be03a-535c-45e6-9e3b-7b53a8eb78af.mail> Build Update for psachin/sos ------------------------------------- Build: #11 Status: Passed Duration: 40 seconds Commit: cccaaf5 (gnocchi) Author: Sachin Patil Message: [gnocchi] New Gnocchi plugin with grafana support Following files are collected: - /etc/gnocchi/gnocchi.conf - /etc/gnocchi/gnocchi-config-generator.conf - /etc/gnocchi/policy.json - /etc/gnocchi/api-paste.ini Following outputs are collected: - `gnocchi --version` - `gnocchi status` - `gnocchi capabilities list` - `gnocchi archive-policy list` - `gnocchi resource list` - `gnocchi resource-type list` Grafana commands ouputs are captured('-o grafana -k gnocchi.grafana=True'): - `grafana-cli --version` - `grafana-cli plugins ls` Closes-Bug: #678 Signed-off-by: Sachin Patil View the changeset: https://github.com/psachin/sos/compare/1fd12690870e^...cccaaf50520e View the full build log and details: https://travis-ci.org/psachin/sos/builds/148847179 -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From builds at travis-ci.org Mon Aug 1 14:32:55 2016 From: builds at travis-ci.org (Travis CI) Date: Mon, 01 Aug 2016 14:32:55 +0000 Subject: [sos-devel] Errored: psachin/sos#13 (gnocchi - 91b99ef) In-Reply-To: Message-ID: <579f5d90d890e_33fbf720b70401174df@289d24d6-6c07-4754-bc66-97980b7b9934.mail> Build Update for psachin/sos ------------------------------------- Build: #13 Status: Errored Duration: 30 seconds Commit: 91b99ef (gnocchi) Author: Sachin Patil Message: [gnocchi] New Gnocchi plugin with grafana support Following files are collected: - /etc/gnocchi/gnocchi.conf - /etc/gnocchi/gnocchi-config-generator.conf - /etc/gnocchi/policy.json - /etc/gnocchi/api-paste.ini Following outputs are collected: - `gnocchi --version` - `gnocchi status` - `gnocchi capabilities list` - `gnocchi archive-policy list` - `gnocchi resource list` - `gnocchi resource-type list` Closes-Bug: #678 Signed-off-by: Sachin Patil View the changeset: https://github.com/psachin/sos/compare/0c06597331e1...91b99efe4774 View the full build log and details: https://travis-ci.org/psachin/sos/builds/148895275 -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From builds at travis-ci.org Mon Aug 8 14:22:07 2016 From: builds at travis-ci.org (Travis CI) Date: Mon, 08 Aug 2016 14:22:07 +0000 Subject: [sos-devel] Passed: psachin/sos#15 (grafana - d7f0625) In-Reply-To: Message-ID: <57a8958d650b1_33fc0daf9c0745481d6@e02a62f6-8fd4-4c4d-b448-9ebd942910c3.mail> Build Update for psachin/sos ------------------------------------- Build: #15 Status: Passed Duration: 43 seconds Commit: d7f0625 (grafana) Author: Pratik Bandarkar Message: Dont limit size while capturing all_logs View the changeset: https://github.com/psachin/sos/commit/d7f06253bf60 View the full build log and details: https://travis-ci.org/psachin/sos/builds/150646953 -- You can configure recipients for build notifications in your .travis.yml file. See https://docs.travis-ci.com/user/notifications -------------- next part -------------- An HTML attachment was scrubbed... URL: From Charles_Rose at dell.com Thu Aug 18 21:02:06 2016 From: Charles_Rose at dell.com (Charles_Rose at dell.com) Date: Thu, 18 Aug 2016 21:02:06 +0000 Subject: [sos-devel] [PATCH][omsa] fix wrong chassis command Message-ID: <1471554125-5006-1-git-send-email-charles_rose@dell.com> 'chassis summary' command included in error. Removing it. Thanks to Pavel Moravec for catching it. Signed-off-by: Charles Rose --- sos/plugins/omsa.py | 1 - 1 file changed, 1 deletion(-) diff --git a/sos/plugins/omsa.py b/sos/plugins/omsa.py index fa825c8..8379eab 100644 --- a/sos/plugins/omsa.py +++ b/sos/plugins/omsa.py @@ -48,7 +48,6 @@ class omsa(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "{0} system events".format(self.omreport), "{0} chassis info".format(self.omreport), "{0} chassis biossetup".format(self.omreport), - "{0} chassis summary".format(self.omreport), ], timeout=30) # vim: et ts=4 sw=4 -- 2.5.5 From Charles_Rose at dell.com Thu Aug 18 21:03:15 2016 From: Charles_Rose at dell.com (Charles_Rose at dell.com) Date: Thu, 18 Aug 2016 21:03:15 +0000 Subject: [sos-devel] [PATCH][omsa] Include storage controller information Message-ID: <1471554194-5156-1-git-send-email-charles_rose@dell.com> Include storage controller (SCSI, SAS, RAID) information to the report. Signed-off-by: Charles Rose --- sos/plugins/omsa.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sos/plugins/omsa.py b/sos/plugins/omsa.py index fa825c8..68662f2 100644 --- a/sos/plugins/omsa.py +++ b/sos/plugins/omsa.py @@ -49,6 +49,7 @@ class omsa(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin): "{0} chassis info".format(self.omreport), "{0} chassis biossetup".format(self.omreport), "{0} chassis summary".format(self.omreport), + "{0} storage controller".format(self.omreport), ], timeout=30) # vim: et ts=4 sw=4 -- 2.5.5