Commit 0e911b87 authored by Lasse Karstensen's avatar Lasse Karstensen

Use parameter instead of param.

In the long description we have sufficient room to
use the full word.
parent 2eb85e13
...@@ -234,21 +234,22 @@ VSC_F(fetch_no_thread, uint64_t, 1, 'c', info, ...@@ -234,21 +234,22 @@ VSC_F(fetch_no_thread, uint64_t, 1, 'c', info,
VSC_F(pools, uint64_t, 0, 'g', info, VSC_F(pools, uint64_t, 0, 'g', info,
"Number of thread pools", "Number of thread pools",
"Number of thread pools. See also param wthread_pools." "Number of thread pools. See also parameter thread_pools."
" NB: Presently pools cannot be removed once created." " NB: Presently pools cannot be removed once created."
) )
VSC_F(threads, uint64_t, 0, 'g', info, VSC_F(threads, uint64_t, 0, 'g', info,
"Total number of threads", "Total number of threads",
"Number of threads in all pools." "Number of threads in all pools."
" See also params thread_pools, thread_pool_min & thread_pool_max." " See also parameters thread_pools, thread_pool_min and"
" thread_pool_max."
) )
VSC_F(threads_limited, uint64_t, 0, 'c', info, VSC_F(threads_limited, uint64_t, 0, 'c', info,
"Threads hit max", "Threads hit max",
"Number of times more threads were needed, but limit was reached" "Number of times more threads were needed, but limit was reached"
" in a thread pool." " in a thread pool."
" See also param thread_pool_max." " See also parameter thread_pool_max."
) )
VSC_F(threads_created, uint64_t, 0, 'c', info, VSC_F(threads_created, uint64_t, 0, 'c', info,
...@@ -265,14 +266,14 @@ VSC_F(threads_failed, uint64_t, 0, 'c', info, ...@@ -265,14 +266,14 @@ VSC_F(threads_failed, uint64_t, 0, 'c', info,
"Thread creation failed", "Thread creation failed",
"Number of times creating a thread failed." "Number of times creating a thread failed."
" See VSL::Debug for diagnostics." " See VSL::Debug for diagnostics."
" See also param thread_fail_delay." " See also parameter thread_fail_delay."
) )
VSC_F(thread_queue_len, uint64_t, 0, 'g', info, VSC_F(thread_queue_len, uint64_t, 0, 'g', info,
"Length of session queue", "Length of session queue",
"Length of session queue waiting for threads." "Length of session queue waiting for threads."
" NB: Only updates once per second." " NB: Only updates once per second."
" See also param queue_max." " See also parameter queue_max."
) )
VSC_F(busy_sleep, uint64_t, 1, 'c', info, VSC_F(busy_sleep, uint64_t, 1, 'c', info,
...@@ -296,14 +297,13 @@ VSC_F(busy_killed, uint64_t, 1, 'c', info, ...@@ -296,14 +297,13 @@ VSC_F(busy_killed, uint64_t, 1, 'c', info,
VSC_F(sess_queued, uint64_t, 0, 'c', info, VSC_F(sess_queued, uint64_t, 0, 'c', info,
"Sessions queued for thread", "Sessions queued for thread",
"Number of times session was queued waiting for a thread." "Number of times session was queued waiting for a thread."
" See also param queue_max." " See also parameter queue_max."
) )
VSC_F(sess_dropped, uint64_t, 0, 'c', info, VSC_F(sess_dropped, uint64_t, 0, 'c', info,
"Sessions dropped for thread", "Sessions dropped for thread",
"Number of times session was dropped because the queue were too" "Number of times session was dropped because the queue were too"
" long already." " long already. See also parameter queue_max."
" See also param queue_max."
) )
/*---------------------------------------------------------------------*/ /*---------------------------------------------------------------------*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment