Files
kumomta/docs/reference/kumo/set_logging_threads.md
T
Wez Furlong 1cc1c703a4 docs: add thread pool tuning functions
These could do with some more exposition and explanation,
but just getting them into the docs is good enough for now
2024-09-24 18:43:53 -07:00

427 B

kumo.set_logging_threads(N)

{{since('2024.09.02-c5476b89')}}

Sets the number of threads to be used for the logging thread pool. This thread pool is used to process logging.

The default number of threads is computed using some unspecified fraction of the available parallelism on the running system, and is shown in the journal on startup.

kumo.on('pre_init', function()
  kumo.set_logging_threads(12)
end)