Codebase list httping / 8f81242
Improved help/man description of Split Times Split times (-S) are more completely explained in the man page and the help options. zorlack 5 years ago
2 changed file(s) with 2 addition(s) and 2 deletion(s). Raw diff Collapse all Expand all
244244 /* output settings */
245245 fprintf(stderr, gettext(" *** output settings ***\n"));
246246 format_help("-s", "--show-statuscodes", gettext("show statuscodes"));
247 format_help("-S", "--split-time", gettext("split measured time in its individual components (resolve, connect, send, etc."));
247 format_help("-S", "--split-time", gettext("split measured time in its individual components (resolve, connect, send, receive, disconnect)"));
248248 format_help(NULL, "--threshold-red", gettext("from what ping value to show the value in red (must be bigger than yellow), only in color mode (-Y)"));
249249 format_help(NULL, "--threshold-yellow", gettext("from what ping value to show the value in yellow"));
250250 format_help(NULL, "--threshold-show", gettext("from what ping value to show the results"));
105105 Only resolve the hostname once: this takes the resolving out of the loop so that the latency of the DNS is not measured. Also useful when you want to measure only 1 webserver while the DNS returns a different ip-address for each resolve ('roundrobin').
106106 .TP
107107 .B "\-S"
108 Split measured latency in time to connect and time to exchange a request with the HTTP server.
108 Split measured latency in time to connect and time to exchange a request with the HTTP server. Split are returned in the following order: Resolve, Connect, Send, Receive, Disconnect.
109109 .TP
110110 .B "\-s"
111111 When a successfull transaction was done, show the HTTP statuscode (200, 404, etc.).