aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlavio Leitner <fbl@redhat.com>2016-05-05 13:11:53 -0400
committerBryn M. Reeves <bmr@redhat.com>2016-05-26 18:22:27 +0100
commit7869bd482030edc25fbd3521286b42a3b29115f2 (patch)
treea0f80bb1533f30d343610ac14edc7d4c07d6c136
parent442a16d62b567b954adb061cfc50ab90d9349f36 (diff)
downloadsos-7869bd482030edc25fbd3521286b42a3b29115f2.tar.gz
[openvswitch] Capture a list of bond devices
Open vSwitch has built-in bonding support. Capture a list of all configured bond ports. Signed-off-by: Flavio Leitner <fbl@redhat.com>
-rw-r--r--sos/plugins/openvswitch.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/sos/plugins/openvswitch.py b/sos/plugins/openvswitch.py
index e080dc1f..c78ac95d 100644
--- a/sos/plugins/openvswitch.py
+++ b/sos/plugins/openvswitch.py
@@ -47,7 +47,9 @@ class OpenVSwitch(Plugin):
"journalctl -u openvswitch",
"journalctl -u openvswitch-nonetwork",
# List devices and their drivers
- "dpdk_nic_bind --status"
+ "dpdk_nic_bind --status",
+ # Capture a list of all bond devices
+ "ovs-appctl bond/list"
])
# Gather additional output for each OVS bridge on the host.