From 16fd6035c205d3f3ff6589fe553a397a61d1d10a Mon Sep 17 00:00:00 2001 From: Maor Dickman Date: Mon, 14 Oct 2024 14:14:33 +0300 Subject: [PATCH] [openvswitch] Add mirror list command Signed-off-by: Maor Dickman --- sos/report/plugins/openvswitch.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sos/report/plugins/openvswitch.py b/sos/report/plugins/openvswitch.py index a4ca2b8ae2..c0e9b6a785 100644 --- a/sos/report/plugins/openvswitch.py +++ b/sos/report/plugins/openvswitch.py @@ -118,6 +118,8 @@ def setup(self): f"{self.vctl} -t 5 list bridge", # Capture OVS datapath list f"{self.vctl} -t 5 list datapath", + # Capture OVS mirror list + f"{self.vctl} -t 5 list mirror", # Capture DPDK queue to pmd mapping f"{self.actl} dpif-netdev/pmd-rxq-show -secs 5", f"{self.actl} dpif-netdev/pmd-rxq-show -secs 30",