DOC: halog: Move the `-qry` parameter into the correct section in help text

This is not an output filter, but instead a modifier. Specifically "only one
may be used at a time" is not true.

see 24b8d693b2
This commit is contained in:
Tim Duesterhus 2021-10-28 15:53:37 +02:00 committed by Willy Tarreau
parent 207f0cb3be
commit a0635f8d10
1 changed files with 2 additions and 2 deletions

View File

@ -183,6 +183,7 @@ void help()
" -m <lines> limit output to the first <lines> lines\n" " -m <lines> limit output to the first <lines> lines\n"
" -s <skip_n_fields> skip n fields from the beginning of a line (default %d)\n" " -s <skip_n_fields> skip n fields from the beginning of a line (default %d)\n"
" you can also use -n to start from earlier then field %d\n" " you can also use -n to start from earlier then field %d\n"
" -qry preserve the query string for per-URL (-u*) statistics\n"
"\n" "\n"
"Output filters - only one may be used at a time\n" "Output filters - only one may be used at a time\n"
" -c only report the number of lines that would have been printed\n" " -c only report the number of lines that would have been printed\n"
@ -197,8 +198,7 @@ void help()
" -u : by URL, -uc : request count, -ue : error count\n" " -u : by URL, -uc : request count, -ue : error count\n"
" -ua : average response time, -ut : average total time\n" " -ua : average response time, -ut : average total time\n"
" -uao, -uto: average times computed on valid ('OK') requests\n" " -uao, -uto: average times computed on valid ('OK') requests\n"
" -uba, -ubt: average bytes returned, total bytes returned\n" " -uba, -ubt: average bytes returned, total bytes returned\n",
" -qry preserve the query string for per-URL statistics\n",
SOURCE_FIELD,SOURCE_FIELD SOURCE_FIELD,SOURCE_FIELD
); );
exit(0); exit(0);