This is an automated email from the ASF dual-hosted git repository. lburgazzoli pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel-quarkus.git
commit 259f73616c6e12d51ccf8f5b67e334205556c287 Author: lburgazzoli <lburgazz...@gmail.com> AuthorDate: Sat Jun 20 18:06:01 2020 +0200 Regen --- docs/modules/ROOT/pages/extensions/core.adoc | 40 +++++++++---------- .../ROOT/pages/extensions/debezium-postgres.adoc | 3 +- .../ROOT/pages/extensions/microprofile-health.adoc | 14 ------- .../pages/extensions/microprofile-metrics.adoc | 45 ---------------------- .../modules/ROOT/pages/extensions/opentracing.adoc | 20 ---------- 5 files changed, 22 insertions(+), 100 deletions(-) diff --git a/docs/modules/ROOT/pages/extensions/core.adoc b/docs/modules/ROOT/pages/extensions/core.adoc index cd31151..a326fb1 100644 --- a/docs/modules/ROOT/pages/extensions/core.adoc +++ b/docs/modules/ROOT/pages/extensions/core.adoc @@ -40,30 +40,12 @@ Check the xref:user-guide/index.adoc[User guide] for more information about writ | Configuration property | Type | Default -|icon:lock[title=Fixed at build time] [[quarkus.camel.main.enabled]]`link:#quarkus.camel.main.enabled[quarkus.camel.main.enabled]` +|icon:lock[title=Fixed at build time] [[quarkus.camel.bootstrap.enabled]]`link:#quarkus.camel.bootstrap.enabled[quarkus.camel.bootstrap.enabled]` -Enable `camel-main`. If `true`, routes are automatically loaded and started and the entire lifecycle of the Camel Context is under the control of the `camel-main` component. Otherwise, the application developer is responsible for performing all the mentioned tasks. +When set to true, the `CamelRuntime` will be started automatically. | `boolean` | `true` -|icon:lock[title=Fixed at build time] [[quarkus.camel.main.routes-discovery.enabled]]`link:#quarkus.camel.main.routes-discovery.enabled[quarkus.camel.main.routes-discovery.enabled]` - -Enable automatic discovery of routes during static initialization. -| `boolean` -| `true` - -|icon:lock[title=Fixed at build time] [[quarkus.camel.main.routes-discovery.exclude-patterns]]`link:#quarkus.camel.main.routes-discovery.exclude-patterns[quarkus.camel.main.routes-discovery.exclude-patterns]` - -Used for exclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to exclude all classes starting with Bar use: **/Bar* To exclude all routes form a specific package use: com/mycompany/bar/* To exclude all routes form a specific package and its sub-packages use double wildcards: com/mycompany/bar/** And to exclude [...] -| `string` -| - -|icon:lock[title=Fixed at build time] [[quarkus.camel.main.routes-discovery.include-patterns]]`link:#quarkus.camel.main.routes-discovery.include-patterns[quarkus.camel.main.routes-discovery.include-patterns]` - -Used for inclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to include all classes starting with Foo use: **/Foo* To include all routes form a specific package use: com/mycompany/foo/* To include all routes form a specific package and its sub-packages use double wildcards: com/mycompany/foo/** And to include [...] -| `string` -| - |icon:lock[title=Fixed at build time] [[quarkus.camel.service.discovery.exclude-patterns]]`link:#quarkus.camel.service.discovery.exclude-patterns[quarkus.camel.service.discovery.exclude-patterns]` A comma-separated list of Ant-path style patterns to match Camel service definition files in the classpath. The services defined in the matching files will not be discoverable via the `org.apache.camel.spi.FactoryFinder` mechanism. @@ -124,6 +106,24 @@ If `true` the Runtime Camel Catalog embedded in the application will contain JSO | `boolean` | `true` +|icon:lock[title=Fixed at build time] [[quarkus.camel.routes-discovery.enabled]]`link:#quarkus.camel.routes-discovery.enabled[quarkus.camel.routes-discovery.enabled]` + +Enable automatic discovery of routes during static initialization. +| `boolean` +| `true` + +|icon:lock[title=Fixed at build time] [[quarkus.camel.routes-discovery.exclude-patterns]]`link:#quarkus.camel.routes-discovery.exclude-patterns[quarkus.camel.routes-discovery.exclude-patterns]` + +Used for exclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to exclude all classes starting with Bar use: **/Bar* To exclude all routes form a specific package use: com/mycompany/bar/* To exclude all routes form a specific package and its sub-packages use double wildcards: com/mycompany/bar/** And to exclude [...] +| `string` +| + +|icon:lock[title=Fixed at build time] [[quarkus.camel.routes-discovery.include-patterns]]`link:#quarkus.camel.routes-discovery.include-patterns[quarkus.camel.routes-discovery.include-patterns]` + +Used for inclusive filtering scanning of RouteBuilder classes. The exclusive filtering takes precedence over inclusive filtering. The pattern is using Ant-path style pattern. Multiple patterns can be specified separated by comma. For example to include all classes starting with Foo use: **/Foo* To include all routes form a specific package use: com/mycompany/foo/* To include all routes form a specific package and its sub-packages use double wildcards: com/mycompany/foo/** And to include [...] +| `string` +| + |icon:lock[title=Fixed at build time] [[quarkus.camel.native.resources.exclude-patterns]]`link:#quarkus.camel.native.resources.exclude-patterns[quarkus.camel.native.resources.exclude-patterns]` A comma separated list of Ant-path style patterns to match resources that should be excluded from the native executable. By default, resources not selected by quarkus itself are ignored. Then, inclusion of additional resources could be triggered with `includePatterns`. When the inclusion patterns is too large, eviction of previously selected resources could be triggered with `excludePatterns`. diff --git a/docs/modules/ROOT/pages/extensions/debezium-postgres.adoc b/docs/modules/ROOT/pages/extensions/debezium-postgres.adoc index 69d6b7d..a40c064 100644 --- a/docs/modules/ROOT/pages/extensions/debezium-postgres.adoc +++ b/docs/modules/ROOT/pages/extensions/debezium-postgres.adoc @@ -4,7 +4,8 @@ [[debezium-postgres]] = Debezium PostgresSQL Connector -*Since Camel Quarkus 1.0.0-M6, JVM and native* +[.badges] +[.badge-key]##Since Camel Quarkus##[.badge-version]##1.0.0-M6## [.badge-key]##JVM##[.badge-supported]##supported## [.badge-key]##Native##[.badge-supported]##supported## Capture changes from a PostgresSQL database. diff --git a/docs/modules/ROOT/pages/extensions/microprofile-health.adoc b/docs/modules/ROOT/pages/extensions/microprofile-health.adoc index 907e6f5..822ea01 100644 --- a/docs/modules/ROOT/pages/extensions/microprofile-health.adoc +++ b/docs/modules/ROOT/pages/extensions/microprofile-health.adoc @@ -56,20 +56,6 @@ Inspects the status of each route and causes the health check status to be `DOWN == Additional Camel Quarkus configuration -The Camel MicroProfile Health extension exposes the following configuration properties. - -[cols="80,.^10,.^10"] -|=== -|Configuration property |Type |Default - -|`quarkus.camel.health.enabled` - - Set whether to enable Camel health checks -|boolean -|`true` -|=== - - [width="100%",cols="80,5,15",options="header"] |=== | Configuration property | Type | Default diff --git a/docs/modules/ROOT/pages/extensions/microprofile-metrics.adoc b/docs/modules/ROOT/pages/extensions/microprofile-metrics.adoc index c9f624c..c0b99fa 100644 --- a/docs/modules/ROOT/pages/extensions/microprofile-metrics.adoc +++ b/docs/modules/ROOT/pages/extensions/microprofile-metrics.adoc @@ -151,51 +151,6 @@ Metrics are exposed to Quarkus as application metrics and they can be browsed at == Additional Camel Quarkus configuration -The Camel MicroProfile Metrics extension exposes the following configuration properties. - -[cols="80,.^10,.^10"] -|=== -|Configuration property |Type |Default - -|`quarkus.camel.metrics.enable-route-policy` - -Set whether to enable the `MicroProfileMetricsRoutePolicyFactory` for capturing metrics on route processing times -|boolean -|`true` - - -|`quarkus.camel.metrics.enable-message-history` - -Set whether to enable the `MicroProfileMetricsMessageHistoryFactory` for capturing metrics on individual route node processing times. - -Depending on the number of configured route nodes, there is the potential to create a large volume of metrics. Therefore, this option is disabled by default. - -|boolean -|`false` - -|`quarkus.camel.metrics.enable-exchange-event-notifier` - -Set whether to enable the `MicroProfileMetricsExchangeEventNotifier` for capturing metrics on exchange processing times. - -|boolean -|`true` - -|`quarkus.camel.metrics.enable-route-event-notifier` - -Set whether to enable the `MicroProfileMetricsRouteEventNotifier` for capturing metrics on the total number of routes and total number of routes running. - -|boolean -|`true` - -|`quarkus.camel.metrics.enable-camel-context-event-notifier` - -Set whether to enable the `MicroProfileMetricsCamelContextEventNotifier` for capturing metrics about the CamelContext, such as status and uptime. - -|boolean -|`true` -|=== - - [width="100%",cols="80,5,15",options="header"] |=== | Configuration property | Type | Default diff --git a/docs/modules/ROOT/pages/extensions/opentracing.adoc b/docs/modules/ROOT/pages/extensions/opentracing.adoc index 2387b13..a2685e2 100644 --- a/docs/modules/ROOT/pages/extensions/opentracing.adoc +++ b/docs/modules/ROOT/pages/extensions/opentracing.adoc @@ -54,26 +54,6 @@ quarkus.camel.opentracing.exclude-patterns=direct:*,netty-http:* == Additional Camel Quarkus configuration -The Camel OpenTracing extension exposes the following configuration properties. - -[cols="80,.^10,.^10"] -|=== -|Configuration property |Type |Default - -|`quarkus.camel.opentracing.encoding` - - Sets whether header keys need to be encoded -|boolean -|`false` - -|`quarkus.camel.opentracing.exclude-patterns` - - Sets whether to disable tracing for endpoint URIs that match the given patterns -|List<String> -| -|=== - - [width="100%",cols="80,5,15",options="header"] |=== | Configuration property | Type | Default