Update documentation for MaxConcurrentChecks and concurrent_checks

refs #4841
This commit is contained in:
Noah Hilverling 2018-01-18 15:20:23 +01:00
parent 97bd91dda2
commit d8c31353e4
2 changed files with 5 additions and 4 deletions

View File

@ -247,16 +247,16 @@ This configuration object is available as [checker feature](11-cli-commands.md#c
Example: Example:
``` ```
object CheckerComponent "checker" { library "checker"
concurrent_checks = 512
} object CheckerComponent "checker" { }
``` ```
Configuration Attributes: Configuration Attributes:
Name | Type | Description Name | Type | Description
--------------------------|-----------------------|---------------------------------- --------------------------|-----------------------|----------------------------------
concurrent\_checks | Number | **Optional.** The maximum number of concurrent checks. Defaults to 512. concurrent\_checks | Number | **Optional and Deprecated.** The maximum number of concurrent checks. Was replaced by global constant `MaxConcurrentChecks` which will be set if you still use `concurrent_checks`.
## CheckResultReader <a id="objecttype-checkresultreader"></a> ## CheckResultReader <a id="objecttype-checkresultreader"></a>

View File

@ -398,6 +398,7 @@ PlatformKernelVersion|**Read-only.** The version of the operating system kernel,
BuildCompilerName |**Read-only.** The name of the compiler Icinga was built with, e.g. "Clang". BuildCompilerName |**Read-only.** The name of the compiler Icinga was built with, e.g. "Clang".
BuildCompilerVersion|**Read-only.** The version of the compiler Icinga was built with, e.g. "7.3.0.7030031". BuildCompilerVersion|**Read-only.** The version of the compiler Icinga was built with, e.g. "7.3.0.7030031".
BuildHostName |**Read-only.** The name of the host Icinga was built on, e.g. "acheron". BuildHostName |**Read-only.** The name of the host Icinga was built on, e.g. "acheron".
MaxConcurrentChecks |**Read-write**. The number of max checks run simultaneously. Defaults to 512.
Advanced runtime constants. Please only use them if advised by support or developers. Advanced runtime constants. Please only use them if advised by support or developers.