From 3ce55e72152ec97044a2c0016f96090b1966c384 Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Mon, 7 May 2018 14:48:05 -0400 Subject: [PATCH] Rename TID count options to show * tid_req_count -> tid_reqs_processed * tid_req_pending -> tid_reqs_pending * tid_req_error_count -> tid_error_count --- mon/mon_common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/mon/mon_common.c b/mon/mon_common.c index b0ff1d8..3ca8d16 100644 --- a/mon/mon_common.c +++ b/mon/mon_common.c @@ -90,13 +90,13 @@ const char *mon_opt_type_to_string(MON_OPT_TYPE opt_type) return "uptime"; case OPT_TYPE_SHOW_TID_REQ_COUNT: - return "tid_req_count"; + return "tid_reqs_processed"; case OPT_TYPE_SHOW_TID_REQ_ERR_COUNT: - return "tid_req_error_count"; + return "tid_error_count"; case OPT_TYPE_SHOW_TID_REQ_PENDING: - return "tid_req_pending"; + return "tid_reqs_pending"; case OPT_TYPE_SHOW_ROUTES: return "routes"; -- 2.1.4