This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit ea9d59a327df825160825939a49fc51aad0297a2 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Thu Jun 11 20:51:09 2020 +0200 Regen --- docs/modules/ROOT/pages/lra-starter.adoc | 10 +++++----- docs/modules/ROOT/pages/spring-boot.adoc | 33 +++++++++++++++++++++++++------- 2 files changed, 31 insertions(+), 12 deletions(-) diff --git a/docs/modules/ROOT/pages/lra-starter.adoc b/docs/modules/ROOT/pages/lra-starter.adoc index 0c5527f..f9910e6 100644 --- a/docs/modules/ROOT/pages/lra-starter.adoc +++ b/docs/modules/ROOT/pages/lra-starter.adoc @@ -24,11 +24,11 @@ The component supports 5 options, which are listed below. [width="100%",cols="2,5,^1,2",options="header"] |=== | Name | Description | Default | Type -| *camel.service.lra.coordinator-context-path* | The context path of the LRA coordinator service | | String -| *camel.service.lra.coordinator-url* | The base URL of the LRA coordinator service (e.g. \http://lra-host:8080) | | String -| *camel.service.lra.enabled* | Global option to enable/disable component auto-configuration, default is true. | true | Boolean -| *camel.service.lra.local-participant-context-path* | The context path of the local participant callback services | | String -| *camel.service.lra.local-participant-url* | The local URL where the coordinator should send callbacks to (e.g. \http://my-host-name:8080) | | String +| *camel.lra.coordinator-context-path* | The context path of the LRA coordinator service | | String +| *camel.lra.coordinator-url* | The base URL of the LRA coordinator service (e.g. \http://lra-host:8080) | | String +| *camel.lra.enabled* | Global option to enable/disable component auto-configuration, default is true. | true | Boolean +| *camel.lra.local-participant-context-path* | The context path of the local participant callback services | | String +| *camel.lra.local-participant-url* | The local URL where the coordinator should send callbacks to (e.g. \http://my-host-name:8080) | | String |=== // spring-boot-auto-configure options: END diff --git a/docs/modules/ROOT/pages/spring-boot.adoc b/docs/modules/ROOT/pages/spring-boot.adoc index ea34efe..183c696 100644 --- a/docs/modules/ROOT/pages/spring-boot.adoc +++ b/docs/modules/ROOT/pages/spring-boot.adoc @@ -92,7 +92,7 @@ When using spring-boot with Spring Boot make sure to use the following Maven dep ---- -The component supports 129 options, which are listed below. +The component supports 148 options, which are listed below. @@ -136,11 +136,23 @@ The component supports 129 options, which are listed below. | *camel.component.properties.properties-parser* | To use a custom PropertiesParser. The option is a org.apache.camel.component.properties.PropertiesParser type. | | String | *camel.component.properties.system-properties-mode* | Sets the JVM system property mode (0 = never, 1 = fallback, 2 = override). The default mode (override) is to use system properties if present, and override any existing properties. OS environment variable mode is checked before JVM system property mode | 2 | Integer | *camel.dataformat.enabled* | Global option to enable/disable dataformat auto-configuration, default is true. | true | Boolean -| *camel.health.config* | | | Map -| *camel.health.context-enabled* | | | Boolean -| *camel.health.enabled* | | | Boolean -| *camel.health.registry-enabled* | | | Boolean -| *camel.health.routes-enabled* | | | Boolean +| *camel.health.config* | Additional health check properties for fine grained configuration of health checks. | | Map +| *camel.health.config.allow-core-thread-time-out* | Sets whether to allow core threads to timeout | | Boolean +| *camel.health.config.enabled* | Set if the check associated to this configuration is enabled or not. Is default enabled. | | Boolean +| *camel.health.config.failure-threshold* | Set the number of failure before reporting the service as un-healthy. | | Integer +| *camel.health.config.id* | Sets the id of this thread pool | | String +| *camel.health.config.interval* | Set the check interval in milli seconds. | | Long +| *camel.health.config.keep-alive-time* | Sets the keep alive time for inactive threads | | Long +| *camel.health.config.max-pool-size* | Sets the maximum pool size | | Integer +| *camel.health.config.max-queue-size* | Sets the maximum number of tasks in the work queue. Use -1 or an unbounded queue | | Integer +| *camel.health.config.parent* | The id of the health check such as routes or registry (can use * as wildcard) | | String +| *camel.health.config.pool-size* | Sets the core pool size (threads to keep minimum in pool) | | Integer +| *camel.health.config.rejected-policy* | Sets the handler for tasks which cannot be executed by the thread pool. | | ThreadPoolRejectedPolicy +| *camel.health.config.time-unit* | Sets the time unit used for keep alive time | | TimeUnit +| *camel.health.context-enabled* | Whether context health check is enabled Is default enabled | | Boolean +| *camel.health.enabled* | Whether health check is enabled globally | | Boolean +| *camel.health.registry-enabled* | Whether registry health check is enabled Is default enabled | | Boolean +| *camel.health.routes-enabled* | Whether routes health check is enabled Is default enabled | | Boolean | *camel.language.enabled* | Global option to enable/disable language auto-configuration, default is true. | true | Boolean | *camel.springboot.allow-use-original-message* | Sets whether to allow access to the original message from Camel's error handler, or from org.apache.camel.spi.UnitOfWork.getOriginalInMessage(). Turning this off can optimize performance, as defensive copy of the original message is not needed. Default is false. | false | Boolean | *camel.springboot.auto-startup* | Sets whether the object should automatically start when Camel starts. Important: Currently only routes can be disabled, as CamelContext's are always started. Note: When setting auto startup false on CamelContext then that takes precedence and no routes is started. You would need to start CamelContext explicit using the org.apache.camel.CamelContext.start() method, to start the context, and then you would need to start the routes manually using Camelcon [...] @@ -227,7 +239,14 @@ The component supports 129 options, which are listed below. | *camel.ssl.server-parameters* | The optional configuration options to be applied purely to the server side settings of the SSLContext. Settings specified here override any duplicate settings provided at the overall level by this class. These parameters apply to SSLServerSocketFactory and SSLEngine produced by the SSLContext produced from this class as well as to the SSLContext itself. | | SSLContextServerParameters | *camel.ssl.session-timeout* | The optional SSLSessionContext timeout time for javax.net.ssl.SSLSession in seconds. | | String | *camel.ssl.trust-managers* | The optional trust manager configuration for creating the TrustManager used in constructing an SSLContext. | | TrustManagersParameters -| *management.info.camel.enabled* | Whether to enable Camel info. | true | Boolean +| *camel.threadpool.allow-core-thread-time-out* | Sets default whether to allow core threads to timeout | | Boolean +| *camel.threadpool.config* | Adds a configuration for a specific thread pool profile (inherits default values) | | Map +| *camel.threadpool.keep-alive-time* | Sets the default keep alive time for inactive threads | | Long +| *camel.threadpool.max-pool-size* | Sets the default maximum pool size | | Integer +| *camel.threadpool.max-queue-size* | Sets the default maximum number of tasks in the work queue. Use -1 or an unbounded queue | | Integer +| *camel.threadpool.pool-size* | Sets the default core pool size (threads to keep minimum in pool) | | Integer +| *camel.threadpool.rejected-policy* | Sets the default handler for tasks which cannot be executed by the thread pool. | | ThreadPoolRejectedPolicy +| *camel.threadpool.time-unit* | Sets the default time unit used for keep alive time | | TimeUnit |=== // spring-boot-auto-configure options: END