diff options
author | Florin Coras <fcoras@cisco.com> | 2019-08-31 09:45:13 -0700 |
---|---|---|
committer | Florin Coras <fcoras@cisco.com> | 2019-09-04 10:38:49 -0700 |
commit | 5bb23ecd098eac639641e2b3d62eb8744e0efef0 (patch) | |
tree | 6a9a4e77ea11641c51b381af7019e409e3f013cf /src/plugins | |
parent | 8b4114e52f69b9292efb282e49ed4d90699ceeb8 (diff) |
session: improve cli
Type: feature
Allow session cli filtering based on thread index, transport protocol,
session state and range of session pool indices. For instance
show session thread 1 proto tcp state ready range 0 20 verbose
Shows the session ids for the first 20 tcp sessions in thread 1 that are
in ready state.
To avoid excessive output that could reasult in the worker barrier being
held by the main thread for long periods of time, the session cli will
only output:
- session ids (verbose == 1) for a maximum of 50 sessions / worker
- verbose > 1 details for a maximum of 10 sessions
Change-Id: I2cfb351b548e2e0a1d5b4345810be613e2917d17
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c b/src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c index 28c89a65fbf..41f9cd9e09c 100644 --- a/src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c +++ b/src/plugins/hs_apps/sapi/vpp_echo_proto_quic.c @@ -54,7 +54,7 @@ quic_echo_on_connected_connect (session_connected_msg_t * mp, { echo_main_t *em = &echo_main; quic_echo_proto_main_t *eqm = &quic_echo_proto_main; - u8 *uri = format (0, "QUIC://session/%lu", mp->handle); + u8 *uri = format (0, "quic://session/%lu", mp->handle); u64 i; echo_notify_event (em, ECHO_EVT_FIRST_SCONNECT); @@ -107,7 +107,7 @@ quic_echo_on_accept_connect (session_accepted_msg_t * mp, u32 session_index) echo_main_t *em = &echo_main; quic_echo_proto_main_t *eqm = &quic_echo_proto_main; ECHO_LOG (1, "Accept on QSession 0x%lx %u", mp->handle); - u8 *uri = format (0, "QUIC://session/%lu", mp->handle); + u8 *uri = format (0, "quic://session/%lu", mp->handle); u32 i; echo_notify_event (em, ECHO_EVT_FIRST_SCONNECT); @@ -303,7 +303,7 @@ quic_echo_retry_connect (u32 session_index) else { session = pool_elt_at_index (em->sessions, session_index); - uri = format (0, "QUIC://session/%lu", session->vpp_session_handle); + uri = format (0, "quic://session/%lu", session->vpp_session_handle); ECHO_LOG (1, "Retrying connect %s", uri); echo_send_rpc (em, echo_send_connect, (void *) uri, session_index); } |