Return separate counts of TID reqs that succeed and result in error
[trust_router.git] / tr / trmon_main.c
index 4da3555..fe5e660 100644 (file)
@@ -55,27 +55,28 @@ const char *argp_program_bug_address=PACKAGE_BUGREPORT; /* bug reporting address
 /* doc strings */
 static const char doc[] =
     PACKAGE_NAME " - Moonshot Trust Router Monitoring Client"
-                 "\v" /* options list goes here */
-                 "Supported monitoring commands:\n"
-                 "\n"
-                 "  show [<option> ...]\n"
-                 "\n"
-                 "     Show information about the Trust Router's current state.\n"
-                 "\n"
-                 "     Options:\n"
-                 "       version            - current Trust Router software version\n"
-                 "       config_files       - currently loaded configuration files\n"
-                 "       uptime             - time, in seconds, since the Trust Router launched\n"
-                 "       tid_reqs_processed - number of TID requests successfully processed\n"
-                 "       tid_reqs_pending   - number of TID requests currently being processed\n"
-                 "       tid_error_count    - number of TID failed connections\n"
-                 "       routes             - current TID routing table\n"
-                 "       peers              - dynamic Trust Router peer table\n"
-                 "       communities        - community table\n"
-                 "       realms             - known realm table\n"
-                 "       rp_clients         - authorized TID RP clients\n"
-                 "\n"
-                 "    If no options are specified, data for all options will be retrieved.\n";
+    "\v" /* options list goes here */
+    "Supported monitoring commands:\n"
+    "\n"
+    "  show [<option> ...]\n"
+    "\n"
+    "     Show information about the Trust Router's current state.\n"
+    "\n"
+    "     Options:\n"
+    "       version            - current Trust Router software version\n"
+    "       config_files       - currently loaded configuration files\n"
+    "       uptime             - time, in seconds, since the Trust Router launched\n"
+    "       tid_reqs_processed - number of TID requests completed successfully\n"
+    "       tid_reqs_failed    - number of TID requests completed with errors\n"
+    "       tid_reqs_pending   - number of TID requests currently being processed\n"
+    "       tid_error_count    - number of unprocessable TID connections\n"
+    "       routes             - current TID routing table\n"
+    "       peers              - dynamic Trust Router peer table\n"
+    "       communities        - community table\n"
+    "       realms             - known realm table\n"
+    "       rp_clients         - authorized TID RP clients\n"
+    "\n"
+    "    If no options are specified, data for all options will be retrieved.\n";
 
 static const char arg_doc[]="<server> <port> <command> [<option> ...]"; /* string describing arguments, if any */