aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Moravec <pmoravec@redhat.com>2018-04-02 15:18:22 +0200
committerBryn M. Reeves <bmr@redhat.com>2018-04-18 11:47:08 +0100
commit188b8b70ea5790af3fe1ca9fc7eea28e83a149a6 (patch)
treec3a7999bc96318a594bfc983b049b216955e4abe
parent04dce26bd12888b924425beefa449a07b683021a (diff)
downloadsos-188b8b70ea5790af3fe1ca9fc7eea28e83a149a6.tar.gz
[openstack_octavia] Add new plugin
This adds a plugin for OpenStack Octavia as a network load balancing. Resolves: #1257 Signed-off-by: Pavel Moravec <pmoravec@redhat.com> Signed-off-by: Bryn M. Reeves <bmr@redhat.com>
-rw-r--r--sos/plugins/openstack_octavia.py111
1 files changed, 111 insertions, 0 deletions
diff --git a/sos/plugins/openstack_octavia.py b/sos/plugins/openstack_octavia.py
new file mode 100644
index 00000000..43bf322a
--- /dev/null
+++ b/sos/plugins/openstack_octavia.py
@@ -0,0 +1,111 @@
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+from sos.plugins import Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin
+
+
+class OpenStackOctavia(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
+ """Openstack Octavia"""
+
+ plugin_name = "openstack_octavia"
+ profiles = ('openstack', 'openstack_controller')
+ packages = ('openstack-octavia-common',)
+
+ var_puppet_gen = "/var/lib/config-data/puppet-generated/octavia"
+
+ def setup(self):
+ # configs
+ self.add_copy_spec([
+ "/etc/sysconfig/network-scripts/ifcfg-o-hm0",
+ "/etc/logrotate.d/openstack-octavia",
+ "/etc/octavia/*",
+ "/var/lib/octavia",
+ self.var_puppet_gen + "/etc/octavia/conf.d",
+ self.var_puppet_gen + "/etc/octavia/octavia.conf",
+ self.var_puppet_gen + "/etc/my.cnf.d/tripleo.cnf",
+ ])
+
+ # don't collect certificates
+ self.add_forbidden_path("/etc/octavia/certs/")
+
+ # logs
+ self.limit = self.get_option("log_size")
+ if self.get_option("all_logs"):
+ self.add_copy_spec([
+ "/var/log/containers/httpd/octavia-api/*",
+ "/var/log/containers/octavia/*",
+ "/var/log/octavia/*",
+ ], sizelimit=self.limit)
+ else:
+ self.add_copy_spec([
+ "/var/log/containers/httpd/octavia-api/*.log",
+ "/var/log/containers/octavia/*.log",
+ "/var/log/octavia/*.log",
+ ], sizelimit=self.limit)
+
+ # commands
+ self.add_cmd_output([
+ "openstack loadbalancer list",
+ "openstack loadbalancer amphora list",
+ "openstack loadbalancer healthmonitor list",
+ "openstack loadbalancer l7policy list",
+ "openstack loadbalancer listener list",
+ "openstack loadbalancer pool list",
+ "openstack loadbalancer quota list",
+ ])
+
+ # get details from each loadbalancer
+ cmd = "openstack loadbalancer list -f value -c id"
+ loadbalancers = self.call_ext_prog(cmd)['output']
+ for loadbalancer in loadbalancers.splitlines():
+ loadbalancer = loadbalancer.split()[0]
+ self.add_cmd_output(
+ "openstack loadbalancer show %s" % (loadbalancer)
+ )
+
+ # get details from each l7policy
+ cmd = "openstack loadbalancer l7policy list -f value -c id"
+ l7policies = self.call_ext_prog(cmd)['output']
+ for l7policy in l7policies.splitlines():
+ l7policy = l7policy.split()[0]
+ self.add_cmd_output(
+ "openstack loadbalancer l7rule list %s" % (l7policy)
+ )
+
+ # get details from each pool
+ cmd = "openstack loadbalancer pool list -f value -c id"
+ pools = self.call_ext_prog(cmd)['output']
+ for pool in pools.splitlines():
+ pool = pool.split()[0]
+ self.add_cmd_output(
+ "openstack loadbalancer member list %s" % (pool)
+ )
+
+ if self.get_option("verify"):
+ self.add_cmd_output("rpm -V %s" % ' '.join(self.packages))
+
+ def postproc(self):
+ protect_keys = [
+ "ca_private_key_passphrase", "heartbeat_key", "password",
+ "connection"
+ ]
+ regexp = r"((?m)^\s*(%s)\s*=\s*)(.*)" % "|".join(protect_keys)
+
+ self.do_path_regex_sub("/etc/octavia/*", regexp, r"\1*********")
+ self.do_path_regex_sub(
+ self.var_puppet_gen + "/etc/octavia/*",
+ regexp, r"\1*********"
+ )
+
+# vim: set et ts=4 sw=4 :