[PATCH 09/10] examples/pipeline: print the output port packet drop counters
Cristian Dumitrescu
cristian.dumitrescu at intel.com
Sat Aug 6 00:00:28 CEST 2022
Print the output port pacet drop statistics counters.
Signed-off-by: Cristian Dumitrescu <cristian.dumitrescu at intel.com>
---
examples/pipeline/cli.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/examples/pipeline/cli.c b/examples/pipeline/cli.c
index 75c32b9089..2e69698031 100644
--- a/examples/pipeline/cli.c
+++ b/examples/pipeline/cli.c
@@ -2276,10 +2276,14 @@ cmd_pipeline_stats(char **tokens,
out_size,
" packets %" PRIu64
" bytes %" PRIu64
+ " packets dropped %" PRIu64
+ " bytes dropped %" PRIu64
" clone %" PRIu64
" clonerr %" PRIu64 "\n",
stats.n_pkts,
stats.n_bytes,
+ stats.n_pkts_drop,
+ stats.n_bytes_drop,
stats.n_pkts_clone,
stats.n_pkts_clone_err);
--
2.34.1
More information about the dev
mailing list