From f1c78acf1648abd6c06a070ef4e6465e5478eab8 Mon Sep 17 00:00:00 2001 From: Yaroslav Brustinov Date: Sun, 10 Jan 2016 17:24:17 +0200 Subject: add alloc_error, queue_full, queue_drop stats report via ZMQ regression: update kiwi02 and trex08 benchmarks add common "scripts_dir" variable for usage in tests configure router with proper MTU in jumbo test add --local flag for not connecting to remote server (useful for functional tests) --- src/main_dpdk.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/main_dpdk.cpp') diff --git a/src/main_dpdk.cpp b/src/main_dpdk.cpp index d3dcb0c5..aba15c28 100755 --- a/src/main_dpdk.cpp +++ b/src/main_dpdk.cpp @@ -2319,6 +2319,9 @@ void CGlobalStats::dump_json(std::string & json){ json+=GET_FIELD(m_tx_expected_cps); json+=GET_FIELD(m_tx_expected_pps); json+=GET_FIELD(m_tx_expected_bps); + json+=GET_FIELD(m_total_alloc_error); + json+=GET_FIELD(m_total_queue_full); + json+=GET_FIELD(m_total_queue_drop); json+=GET_FIELD(m_rx_drop_bps); json+=GET_FIELD(m_active_flows); json+=GET_FIELD(m_open_flows); -- cgit 1.2.3-korg