From 70565eab3854fa4c38e785b3fbdaf85572c6df89 Mon Sep 17 00:00:00 2001 From: Kevin Traynor Date: Fri, 22 Sep 2023 17:02:43 +0100 Subject: [PATCH] [openvswitch] Add DPDK info commands Add commands that report info about DPDK lcore usage, log levels and memory usage. Signed-off-by: Kevin Traynor --- sos/report/plugins/openvswitch.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sos/report/plugins/openvswitch.py b/sos/report/plugins/openvswitch.py index fc0d936bf5..67a0afc985 100644 --- a/sos/report/plugins/openvswitch.py +++ b/sos/report/plugins/openvswitch.py @@ -153,7 +153,11 @@ def setup(self): # Capture miniflow extract implementations "ovs-appctl dpif-netdev/miniflow-parser-get", # Capture DPDK pmd sleep config - "ovs-appctl dpif-netdev/pmd-sleep-show" + "ovs-appctl dpif-netdev/pmd-sleep-show", + # Capture additional DPDK info + "ovs-appctl dpdk/lcore-list", + "ovs-appctl dpdk/log-list", + "ovs-appctl dpdk/get-malloc-stats" ]) # Capture DPDK and other parameters self.add_cmd_output("ovs-vsctl -t 5 get Open_vSwitch . other_config",